mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
desktop/QtCurve-Gtk2: Added to 12.0 repository
This commit is contained in:
parent
f00e8f73e0
commit
9a120393ac
4 changed files with 85 additions and 0 deletions
50
desktop/QtCurve-Gtk2/QtCurve-Gtk2.SlackBuild
Normal file
50
desktop/QtCurve-Gtk2/QtCurve-Gtk2.SlackBuild
Normal file
|
@ -0,0 +1,50 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for QtCurve-Gtk2
|
||||
# Written by bughunter2 (bughunter2@googlemail.com)
|
||||
|
||||
PRGNAM=QtCurve-Gtk2
|
||||
VERSION=0.57.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG $TMP/$PRGNAM-$VERSION
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
.
|
||||
|
||||
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 || true
|
||||
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 COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM-SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cp $CWD/slack-desc $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
desktop/QtCurve-Gtk2/QtCurve-Gtk2.info
Normal file
8
desktop/QtCurve-Gtk2/QtCurve-Gtk2.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="QtCurve-Gtk2"
|
||||
VERSION="0.57.1"
|
||||
HOMEPAGE="http://www.kde-look.org/content/show.php?content=40492"
|
||||
DOWNLOAD="http://home.freeuk.com/cpdrummond/QtCurve-Gtk2-0.57.1.tar.bz2"
|
||||
MD5SUM="47121e3f8232d13582c4b9553f33583a"
|
||||
MAINTAINER="bughunter2"
|
||||
EMAIL="bughunter2@googlemail.com"
|
||||
APPROVED="David Somero"
|
8
desktop/QtCurve-Gtk2/README
Normal file
8
desktop/QtCurve-Gtk2/README
Normal file
|
@ -0,0 +1,8 @@
|
|||
This is a set of widget styles for Gtk2 based apps.
|
||||
|
||||
The fonts and colours for the GTK themes will be read in from your Qt
|
||||
settings so any KDE font/colour changes will also affect your GTK apps.
|
||||
|
||||
If you want Gtk2 apps to use the theme, create a symbolic link to the new
|
||||
theme like this:
|
||||
ln -s /usr/share/themes/QtCurve/gtk-2.0/gtkrc /etc/gtk-2.0/gtkrc
|
19
desktop/QtCurve-Gtk2/slack-desc
Normal file
19
desktop/QtCurve-Gtk2/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also customary
|
||||
# to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------|
|
||||
QtCurve-Gtk2: QtCurve-Gtk2 (theme for Gtk2 based apps)
|
||||
QtCurve-Gtk2:
|
||||
QtCurve-Gtk2: This is a theme for Gtk2 based apps.
|
||||
QtCurve-Gtk2:
|
||||
QtCurve-Gtk2: The fonts and colours for the GTK themes will be read in
|
||||
QtCurve-Gtk2: from your Qt settings - so any KDE font/colour changes will
|
||||
QtCurve-Gtk2: also affect your GTK apps.
|
||||
QtCurve-Gtk2:
|
||||
QtCurve-Gtk2: The homepage for QtCurve-Gtk2 is:
|
||||
QtCurve-Gtk2: http://www.kde-look.org/content/show.php?content=40492/
|
||||
QtCurve-Gtk2:
|
Loading…
Reference in a new issue