2021-07-04 01:48:15 +08:00
|
|
|
#!/bin/bash
|
2010-05-12 02:30:45 +08:00
|
|
|
|
|
|
|
# Slackware build script for cmus
|
|
|
|
|
2010-05-13 13:29:31 +08:00
|
|
|
# Copyright (c) 2008-2010, Antonio Hernández Blas <hba.nihilismus@gmail.com>
|
2024-05-14 16:28:59 +08:00
|
|
|
# Copyright 2013-2024, Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
|
2010-05-12 02:30:45 +08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
# 1.- Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
|
|
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2021-07-04 17:41:06 +08:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-12 02:30:45 +08:00
|
|
|
PRGNAM=cmus
|
2024-05-14 16:28:59 +08:00
|
|
|
VERSION=${VERSION:-2.11.0}
|
2010-05-13 13:29:31 +08:00
|
|
|
BUILD=${BUILD:-1}
|
2010-05-12 02:30:45 +08:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 18:23:38 +08:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-12 02:30:45 +08:00
|
|
|
|
2010-06-04 12:59:48 +08:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-12-28 17:46:59 +08:00
|
|
|
i?86) ARCH=i586 ;;
|
2010-06-04 12:59:48 +08:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 18:23:38 +08:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2010-05-12 02:30:45 +08:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2016-12-28 17:46:59 +08:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2010-05-13 06:20:55 +08:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 02:30:45 +08:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-13 06:20:55 +08:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 02:30:45 +08:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
2010-05-13 06:20:55 +08:00
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 12:59:48 +08:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 02:30:45 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2018-03-26 23:59:50 +08:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
|
2010-05-12 02:30:45 +08:00
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
2013-11-22 15:37:19 +08:00
|
|
|
find -L . \
|
2016-12-28 17:46:59 +08:00
|
|
|
\( -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 {} \;
|
2010-05-12 02:30:45 +08:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
prefix=/usr \
|
2010-05-13 06:20:55 +08:00
|
|
|
libdir=/usr/lib${LIBDIRSUFFIX} \
|
2010-05-12 02:30:45 +08:00
|
|
|
mandir=/usr/man \
|
|
|
|
exampledir="/usr/doc/$PRGNAM-$VERSION/examples" \
|
|
|
|
DEBUG=0
|
|
|
|
|
2011-03-05 02:41:31 +08:00
|
|
|
make V=2
|
2010-05-12 02:30:45 +08:00
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
2013-11-27 16:01:11 +08:00
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
2010-05-13 13:29:31 +08:00
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2010-05-12 02:30:45 +08:00
|
|
|
|
2010-10-31 23:53:34 +08:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|
|
|
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
2010-05-12 02:30:45 +08:00
|
|
|
|
2010-05-13 06:20:55 +08:00
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
2014-08-22 21:49:19 +08:00
|
|
|
cp -a AUTHORS COPYING README.md $PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-13 13:29:31 +08:00
|
|
|
chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/examples/*
|
2010-05-12 02:30:45 +08:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 18:23:38 +08:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|