64 lines
1.9 KiB
Bash
64 lines
1.9 KiB
Bash
#!/bin/sh
|
|
|
|
### gkrellm-volume.SlackBuild ###
|
|
|
|
# Slackware build script for gkrellm-volume 2.1.13
|
|
# Copyright (C) 2006 paul wisehart wise@lupulin.net
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# Modifed by the SlackBuilds.org project
|
|
|
|
PKGNAME=gkrellm-volume
|
|
VERSION=2.1.13
|
|
ARCH=${ARCH:-i486}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PKGNAME
|
|
OUTPUT=${OUTPUT:-/tmp} # Final location of package
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
fi
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP || exit 1
|
|
rm -rf $PKGNAME-$VERSION
|
|
tar -xvzf $CWD/$PKGNAME-$VERSION.tar.gz || exit 1
|
|
cd $PKGNAME || exit 1
|
|
chown -R root:root .
|
|
chmod -R a-s,u+w,go+r-w .
|
|
|
|
# Patch the Makefile and po/Makefile to support DESTDIR
|
|
patch -p1 < $CWD/Makefile.diff || exit 1
|
|
|
|
make enable_nls=1 enable_alsa=1 || exit 1
|
|
make enable_nls=1 enable_alsa=1 install DESTDIR=$PKG || exit 1
|
|
|
|
# Strip the .so file
|
|
strip --strip-unneeded $PKG/usr/lib/gkrellm2/plugins/volume.so
|
|
|
|
mkdir -p $PKG/usr/doc/$PKGNAME-$VERSION
|
|
cp -a COPYRIGHT Changelog README THEMING $PKG/usr/doc/$PKGNAME-$VERSION
|
|
cp -a po/README $PKG/usr/doc/$PKGNAME-$VERSION/README.po
|
|
cat $CWD/$PKGNAME.SlackBuild > $PKG/usr/doc/$PKGNAME-$VERSION/$PKGNAME.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAME-$VERSION-$ARCH-$BUILD$TAG.tgz
|