mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
desktop/breath-gtk-theme: Fix tarball handling.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
079a23719e
commit
4944113024
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue