summaryrefslogtreecommitdiffstats
path: root/system/gkrellm-volume/gkrellm-volume.SlackBuild
blob: d67fc3a2edd0c8cf0f2202e335c695a569d2d138 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/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
cat $CWD/Makefile.diff | patch -p1 --verbose || 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