diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-06 16:15:02 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 9b66ebe14eeb5da6606ae5534a24ef37603b9522 (patch) | |
tree | c1e92ce6202ab454c3b1b9505f37863e57b9e8f0 | |
parent | 42c425006402e2dd9f14573d1210d0565782d996 (diff) | |
download | slackbuilds-9b66ebe14eeb5da6606ae5534a24ef37603b9522.tar.gz |
multimedia/libav: Enabled pulse and libvpx by default
This still needs work for openjpeg.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | multimedia/libav/README | 1 | ||||
-rw-r--r-- | multimedia/libav/libav.SlackBuild | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/multimedia/libav/README b/multimedia/libav/README index 3bde9b2f2f..2d8b2f1d74 100644 --- a/multimedia/libav/README +++ b/multimedia/libav/README @@ -23,7 +23,6 @@ RTMP=yes|no (default: no), requires rtmpdump SCHROEDINGER=yes|no (default: no), requires schroedinger SPEEX=yes|no (default: no), requires speex TWOLAME=yes|no (default: no), requires twolame -VPX=yes|no (default: no), requires libvpx WEBP=yes|no (default: no), requires libwebp X264=yes|no (default: no), requires x264 X265=yes|no (default: no), requires x265 diff --git a/multimedia/libav/libav.SlackBuild b/multimedia/libav/libav.SlackBuild index b7cb811340..512ff5bf2f 100644 --- a/multimedia/libav/libav.SlackBuild +++ b/multimedia/libav/libav.SlackBuild @@ -64,11 +64,9 @@ libfdk_aac="" ; [ "${FDK_AAC:-no}" != "no" ] && libfdk_aac="--enable-libfdk-a libilbc="" ; [ "${ILBC:-no}" != "no" ] && libilbc="--enable-libilbc" libmp3lame="" ; [ "${LAME:-no}" != "no" ] && libmp3lame="--enable-libmp3lame" libopus="" ; [ "${OPUS:-no}" != "no" ] && libopus="--enable-libopus" -libpulse="" ; [ "${PULSEAUDIO:-no}" != "no" ] && libpulse="--enable-libpulse" librtmp="" ; [ "${RTMP:-no}" != "no" ] && librtmp="--enable-librtmp" libspeex="" ; [ "${SPEEX:-no}" != "no" ] && libspeex="--enable-libspeex" libtwolame="" ; [ "${TWOLAME:-no}" != "no" ] && libtwolame="--enable-libtwolame" -libvpx="" ; [ "${VPX:-no}" != "no" ] && libvpx="--enable-libvpx" libwebp="" ; [ "${WEBP:-no}" != "no" ] && libwebp="--enable-libwebp" libx264="" ; [ "${X264:-no}" != "no" ] && libx264="--enable-libx264" libx265="" ; [ "${X265:-no}" != "no" ] && libx265="--enable-libx265" @@ -120,6 +118,8 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-openssl \ --enable-x11grab \ --enable-zlib \ + --enable-libvpx \ + --enable-libpulse \ --disable-debug \ $frei0r \ $libbs2b \ @@ -132,12 +132,10 @@ CXXFLAGS="$SLKCFLAGS" \ $libopencv \ $libopenjpeg \ $libopus \ - $libpulse \ $librtmp \ $libschroedinger \ $libspeex \ $libtwolame \ - $libvpx \ $libwebp \ $libx264 \ $libx265 \ |