mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
multimedia/Gem: Updated for version 0.94.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
51032046b6
commit
520ac002a2
2 changed files with 22 additions and 16 deletions
|
@ -3,10 +3,14 @@
|
|||
#
|
||||
# Michales (clavisound) Michaloudes korgie@gmail.com <2017>
|
||||
|
||||
# 20220214 bkw: Modified by SlackBuilds.org:
|
||||
# - updated for v0.94, as 0.93.3 won't build on Slackware 15.0.
|
||||
# - moved pkg-config stuff to proper place (/usr/lib64 on x86_64).
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=Gem
|
||||
VERSION=${VERSION:-0.93.3}
|
||||
VERSION=${VERSION:-0.94}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -19,9 +23,6 @@ if [ -z "$ARCH" ]; then
|
|||
esac
|
||||
fi
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
|
@ -47,18 +48,21 @@ fi
|
|||
|
||||
set -e
|
||||
|
||||
ZIPFILE="$CWD/Gem[v0.94](Sources).dek"
|
||||
[ -e "$ZIPFILE" ] || ZIPFILE="$CWD/Gem%5Bv0.94%5D%28Sources%29.dek"
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
rm -rf $PRGNAM
|
||||
unzip $ZIPFILE
|
||||
cd $PRGNAM
|
||||
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 \
|
||||
-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 {} \;
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
|
||||
|
||||
# I think useless
|
||||
# patch externals/Gem/configure.ac < $CWD/change_gem_configure_file.patch
|
||||
|
@ -66,8 +70,10 @@ find -L . \
|
|||
# Cannot manage to compile with v4l2
|
||||
# sed -i "s|linux/videodev\.h|libv4l1-videodev.h|" configure || exit 1
|
||||
|
||||
./autogen.sh
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS"
|
||||
CXXFLAGS="$SLKCFLAGS -std=c++11 -fpermissive" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
|
@ -87,10 +93,10 @@ make
|
|||
# make install DESTDIR=$PKG/usr/lib${LIBDIRSUFFIX}/pd/extra
|
||||
|
||||
# will go to $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM
|
||||
make install DESTDIR=$PKG
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
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
|
||||
mv $PKG/usr/lib/pkgconfig $PKG/usr/lib$LIBDIRSUFFIX
|
||||
rmdir $PKG/usr/lib 2>/dev/null || true # does nothing on 32-bit.
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="Gem"
|
||||
VERSION="0.93.3"
|
||||
VERSION="0.94"
|
||||
HOMEPAGE="http://gem.iem.at"
|
||||
DOWNLOAD="http://gem.iem.at/releases/0.93.3/Gem-0.93.3.tar.gz"
|
||||
MD5SUM="06ec538d157b06cbb2972c0e137ddb48"
|
||||
DOWNLOAD="http://gem.iem.at/releases/0.94/Gem%5Bv0.94%5D%28Sources%29.dek"
|
||||
MD5SUM="20b3f7aaca8f77b1691b89145e80bb4f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="pd"
|
||||
|
|
Loading…
Reference in a new issue