diff options
Diffstat (limited to 'multimedia/l-smash/l-smash.SlackBuild')
-rw-r--r-- | multimedia/l-smash/l-smash.SlackBuild | 53 |
1 files changed, 42 insertions, 11 deletions
diff --git a/multimedia/l-smash/l-smash.SlackBuild b/multimedia/l-smash/l-smash.SlackBuild index 0e5686e5d2..4604b343ed 100644 --- a/multimedia/l-smash/l-smash.SlackBuild +++ b/multimedia/l-smash/l-smash.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for l-smash @@ -22,10 +22,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Now maintained by B. Watson <yalhcru@gmail.com> +# Now maintained by B. Watson <urchlay@slackware.uk> +# 20240822 bkw: update for v2.18.0 (vimeo fork). This is what FreeBSD ships. +# 20230708 bkw: BUILD=4, install shared lib +x. +# 20220411 bkw: BUILD=3, put README in right place (not /install!) +# 20210910 bkw: include our own README since there are no docs # 20180215 bkw: update for 2.14.5 - # 20170302 bkw: use long-format github URL # 20160817 bkw: @@ -34,10 +37,16 @@ # - actually use SLKCFLAGS # - i486 => i586 +cd $(dirname $0) ; CWD=$(pwd) + PRGNAM=l-smash -VERSION=${VERSION:-2.14.5} +VERSION=${VERSION:-2.18.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +# 20240822 bkw: parser has been split out into its own project. +OBUVER=478adcc872d5a8a19443e87910508e261a0a60ba if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -47,7 +56,11 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +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} @@ -74,12 +87,23 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION + +# 20240822 bkw: instead of building obuparse as a separate library, +# we're going to build its single source file in-tree. +tar xvf $CWD/obuparse-$OBUVER.tar.gz +mv obuparse-$OBUVER/*.[ch] . +rm -rf obuparse-$OBUVER + chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +# 20240822 bkw: build and link obuparse.o in-tree, instead of requiring +# it to be linked as a library. -I. is already in CFLAGS, so we don't have +# to worry about the include file. +sed -i -e '/^LIBS/s, *-lobuparse,,' \ + -e '/^SRCS/s,"","obuparse.c",' \ + configure # -Wl,-s = strip binaries at link time. ./configure \ @@ -92,13 +116,20 @@ find -L . \ make make install DESTDIR=$PKG +chmod 755 $PKG/usr/lib*/*.so.* mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a LICENSE $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# 20210910 bkw: upstream didn't bother with any docs other than --help +# messages. Include our own README, which at least tells the user the +# names of the binaries (hint: none of them are called l-smash!), and +# tells him to use the --help option. +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README + 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:-tgz} +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |