diff options
author | Arvydas Sidorenko <asido4@gmail.com> | 2011-09-09 16:19:58 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-09-21 19:48:31 -0300 |
commit | 631f836d166c25988aca2c53ff6d44bae00f9977 (patch) | |
tree | 5547b71456caf245deb1cd7a0256fb7da0e1751c /graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild | |
parent | 528e14275912c75a46667c7fc2429d9bbccd13d1 (diff) | |
download | slackbuilds-631f836d166c25988aca2c53ff6d44bae00f9977.tar.gz |
graphics/gnome-themes-extras: Added (gnome metathemes and icons)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild')
-rw-r--r-- | graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild b/graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild new file mode 100644 index 0000000000..d6890249d7 --- /dev/null +++ b/graphics/gnome-themes-extras/gnome-themes-extras.SlackBuild @@ -0,0 +1,51 @@ +#!/bin/sh + +# Slackware build script for gnome-themes-extras +# Written by Arvydas Sidorenko (asido4@gmail.com) + +PRGNAM=gnome-themes-extras +VERSION=${VERSION:-2.22.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + +make +make install DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYING ChangeLog README TODO NEWS \ + $PKG/usr/doc/$PRGNAM-$VERSION +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 +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |