76 lines
1.9 KiB
Bash
76 lines
1.9 KiB
Bash
#!/bin/bash
|
|
|
|
# Slackware build script for yt-dlp
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
# Note: I honestly prefer the standalone executable version of this,
|
|
# which I keep in ~/bin. It allows me to run "yt-dlp -U" as my user to
|
|
# get the latest version. However, since it's listed as an optional
|
|
# dependency for pipe-viewer (and might be useful as a dep for other
|
|
# things), it has to exist on SBo.
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
PRGNAM=yt-dlp
|
|
VERSION=${VERSION:-2022.01.21}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i586 ;;
|
|
arm*) ARCH=arm ;;
|
|
*) ARCH=$( uname -m ) ;;
|
|
esac
|
|
fi
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
exit 0
|
|
fi
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
# no need for CFLAGS or LIBDIRSUFFIX. actually this would be noarch,
|
|
# except for the lib vs. lib64 python problem.
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM
|
|
tar xvf $CWD/$PRGNAM.tar.gz
|
|
cd $PRGNAM
|
|
chown -R root:root .
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
|
|
|
# hardcoded paths.
|
|
sed -i -e "s,share/doc/yt_dlp,doc/$PRGNAM-$VERSION," \
|
|
-e "s,share/man,man," \
|
|
setup.py
|
|
|
|
# if anyone's wondering, there's no python2 support.
|
|
python3 setup.py install --root=$PKG
|
|
|
|
gzip -9 $PKG/usr/man/man1/*
|
|
|
|
# AUTHORS is 0 bytes in 2022.01.21
|
|
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
|
mkdir -p $PKGDOC
|
|
cp -a CONTRIBUTORS LICENSE *.md $PKGDOC
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|