summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/breath-gtk-theme/breath-gtk-theme.SlackBuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/desktop/breath-gtk-theme/breath-gtk-theme.SlackBuild b/desktop/breath-gtk-theme/breath-gtk-theme.SlackBuild
index 5af2793236..73945cd61a 100644
--- a/desktop/breath-gtk-theme/breath-gtk-theme.SlackBuild
+++ b/desktop/breath-gtk-theme/breath-gtk-theme.SlackBuild
@@ -72,7 +72,11 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$VERSION
-tar xvf $CWD/$VERSION.tar.gz
+TARBALL=$CWD/$VERSION.tar.gz
+if [ ! -e $TARBALL ] ; then
+ TARBALL=$CWD/breath-gtk-$VERSION.tar.gz
+fi
+tar xvf $TARBALL
cd $SRCNAM-$VERSION
chown -R root:root .
find -L . \
@@ -86,7 +90,7 @@ cd build
cmake -DCMAKE_C_FLAGS:STRING="${SLKCFLAGS}" \
-DCMAKE_CXX_FLAGS:STRING="${SLKCFLAGS}" \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
..
make
make install DESTDIR=$PKG