1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-05 06:32:32 +02:00

Rename paths used by linux executable

Signed-off-by: Ajay Ramachandran <dev@ajay.app>
This commit is contained in:
Ajay Ramachandran 2021-07-14 19:29:48 -04:00 committed by Panagiotis Vasilopoulos
parent 33a3567485
commit 609784f9b1
No known key found for this signature in database
GPG Key ID: FD806FDB3B2C5270
6 changed files with 7 additions and 7 deletions

@ -10,14 +10,14 @@ def_vars()
list( APPEND PIXMAPS
${_SRCDIR}/gnome-mime-application-x-tenacity-project.xpm
${_SRCDIR}/icons/16x16/audacity16.xpm
${_SRCDIR}/icons/32x32/audacity32.xpm
${_SRCDIR}/icons/48x48/audacity.xpm
${_SRCDIR}/icons/16x16/tenacity16.xpm
${_SRCDIR}/icons/32x32/tenacity32.xpm
${_SRCDIR}/icons/48x48/tenacity.xpm
)
if( NOT CMAKE_SYSTEM_NAME MATCHES "Darwin" )
if( NOT WIN32)
install( FILES "${_SRCDIR}/audacity.svg"
install( FILES "${_SRCDIR}/tenacity.svg"
DESTINATION "${_DATADIR}/icons/hicolor/scalable/apps" )
install( DIRECTORY "${_SRCDIR}/icons/"
DESTINATION "${_DATADIR}/icons/hicolor"

Before

(image error) Size: 4.0 KiB

After

(image error) Size: 4.0 KiB

@ -14,13 +14,13 @@ export AUDACITY_MODULES_PATH="${AUDACITY_MODULES_PATH}:${APPDIR}/lib/modules"
function help()
{
# Normal audacity help
# Normal tenacity help
"${APPDIR}/bin/tenacity" --help
# Special options handled by this script
cat >&2 <<EOF
--readme display README
--license display LICENSE
--man[ual|page] display audacity(1) manual page
--man[ual|page] display tenacity(1) manual page
--check-dependencies check library dependency fulfillment (developer tool)
EOF
@ -46,7 +46,7 @@ case "$1" in
exec bash "${APPDIR}/bin/check_dependencies"
;;
* )
# Other arguments go to Audacity
# Other arguments go to tenacity
exec "${APPDIR}/bin/tenacity" "$@"
;;
esac