diff options
Diffstat (limited to 'network/youtube-dl/youtube-dl.SlackBuild')
-rw-r--r-- | network/youtube-dl/youtube-dl.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/network/youtube-dl/youtube-dl.SlackBuild b/network/youtube-dl/youtube-dl.SlackBuild index a27b3fe82e..15a8ba1f24 100644 --- a/network/youtube-dl/youtube-dl.SlackBuild +++ b/network/youtube-dl/youtube-dl.SlackBuild @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=youtube-dl -VERSION=${VERSION:-2015.02.21} +VERSION=${VERSION:-2015.02.28} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -71,20 +71,23 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Makefile patch -patch -p1 < $CWD/Makefile.patch - # setup.py patch patch -p1 < $CWD/setup.patch make python setup.py install --root=$PKG +# enable bash and fish completion file +chmod +x $PKG/etc/bash_completion.d/${PRGNAM}.bash-completion +chmod +x $PKG/etc/fish/completions/${PRGNAM}.fish + # install man page mkdir -p $PKG/usr/man/man1 install -D -m0644 $CWD/$PRGNAM.1 $PKG/usr/man/man1/$PRGNAM.1 gzip -9 $PKG/usr/man/man1/$PRGNAM.1 +rm -rf $PKG/share + find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |