mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
desktop/domino: Initial import
This commit is contained in:
parent
4ae4659ed4
commit
21a50ba699
4 changed files with 80 additions and 0 deletions
4
desktop/domino/README
Normal file
4
desktop/domino/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
Domino - A theme/style for KDE3.
|
||||
|
||||
Domino is a style with a soft look. It allows to fine adjust the
|
||||
shininess of the widgets by customizable color gradients.
|
57
desktop/domino/domino.SlackBuild
Normal file
57
desktop/domino/domino.SlackBuild
Normal file
|
@ -0,0 +1,57 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for domino
|
||||
|
||||
# Written by core (eroc@linuxmail.org)
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=domino
|
||||
VERSION=0.4
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
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
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -jxvf $CWD/*-$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/opt/kde \
|
||||
--enable-shared=yes \
|
||||
--enable-static=no
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README $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.tgz
|
8
desktop/domino/domino.info
Normal file
8
desktop/domino/domino.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="domino"
|
||||
VERSION="0.4"
|
||||
HOMEPAGE="http://www.kde-look.org/content/show.php/Domino?content=42804"
|
||||
DOWNLOAD="http://www.kde-look.org/CONTENT/content-files/42804-domino-0.4.tar.bz2"
|
||||
MD5SUM="c67bb1b986c4ff98ae640acff7b8562f"
|
||||
MAINTAINER="core"
|
||||
EMAIL="eroc@linuxmail.org"
|
||||
APPROVED="BP{k}"
|
11
desktop/domino/slack-desc
Normal file
11
desktop/domino/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
domino: Domino - A theme/style for KDE3.
|
||||
domino:
|
||||
domino: Domino is a style with a soft look. It allows to fine adjust the
|
||||
domino: shininess of the widgets by customizable color gradients.
|
||||
domino:
|
||||
domino: Homepage:
|
||||
domino: http://www.kde-look.org/content/show.php/Domino?content=42804
|
||||
domino:
|
||||
domino:
|
||||
domino:
|
||||
domino:
|
Loading…
Reference in a new issue