diff options
author | Daniel Engberg <diizzy@FreeBSD.org> | 2024-08-25 07:28:49 +0000 |
---|---|---|
committer | Daniel Engberg <diizzy@FreeBSD.org> | 2024-08-25 08:17:28 +0000 |
commit | 15b6cac8699f9ba9919293be5a7f9ebbb87d43f3 (patch) | |
tree | a6af9ebf11296dadfea8200584be22fbab00e34d | |
parent | f5d113d4acc4b868fd3b963c808fb496d37d6283 (diff) |
www/subsonic-standalone: Remove Musepack support and fix APE_DESC
Remove support for Musepack audio format and adjust APE_DESC
PR: 281025
Approved by: portmgr (blanket)
-rw-r--r-- | www/subsonic-standalone/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/www/subsonic-standalone/Makefile b/www/subsonic-standalone/Makefile index 6313799b82d4..d3df242f7b71 100644 --- a/www/subsonic-standalone/Makefile +++ b/www/subsonic-standalone/Makefile @@ -17,7 +17,7 @@ LICENSE= NONE OPTIONS_GROUP= TRANSCODING TRANSCODING_DESC= Transcoding support -OPTIONS_GROUP_TRANSCODING= FFMPEG FLAC LAME VORBIS FAAC FAAD XMP MPC APE +OPTIONS_GROUP_TRANSCODING= FFMPEG FLAC LAME VORBIS FAAC FAAD XMP APE FFMPEG_DESC= Depend on FFmpeg for audio and video transcoding FLAC_DESC= Depend on FLAC for transcoding LAME_DESC= Depend on LAME for MP3 transcoding @@ -25,8 +25,7 @@ VORBIS_DESC= Depend on oggenc/oggdec for Vorbis transcoding FAAC_DESC= Depend on FAAD for AAC/M4A transcoding FAAD_DESC= Depend on FAAC for AAC/M4A transcoding XMP_DESC= Depend on XMP for module file transcoding -MPC_DESC= Depend on mpcdec for MPC transcoding -APE_DESC= Depend on mac for Monkey's Audio transcoding #' +APE_DESC= Depend on mac for Monkey's Audio transcoding OPTIONS_DEFAULT= FFMPEG OPTIONS_SUB= yes @@ -38,7 +37,6 @@ VORBIS_RUN_DEPENDS= oggenc:audio/vorbis-tools FAAC_RUN_DEPENDS= faac:audio/faac FAAD_RUN_DEPENDS= faad:audio/faad XMP_RUN_DEPENDS= xmp:audio/xmp -MPC_RUN_DEPENDS= mpcdec:audio/musepack APE_RUN_DEPENDS= mac:audio/mac .include <bsd.port.options.mk> |