diff options
author | Aleksandar Samardzic <asamardzic@gmail.com> | 2010-05-12 17:40:29 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:40:29 +0200 |
commit | 5a18971ac0ec6be1320560876c9f95bb25e51834 (patch) | |
tree | f97133242ecb142435925d178ab06c7e96734a4d /libraries/eet/eet.SlackBuild | |
parent | 6524bbaddc984b4e3ffd7502aa5ae99aeeb2900c (diff) | |
download | slackbuilds-5a18971ac0ec6be1320560876c9f95bb25e51834.tar.gz |
libraries/eet: Updated for version 1.2.0
Diffstat (limited to 'libraries/eet/eet.SlackBuild')
-rw-r--r-- | libraries/eet/eet.SlackBuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libraries/eet/eet.SlackBuild b/libraries/eet/eet.SlackBuild index 4fdde204fe..0ee7ae8f63 100644 --- a/libraries/eet/eet.SlackBuild +++ b/libraries/eet/eet.SlackBuild @@ -5,7 +5,7 @@ # Written by Aleksandar Samardzic <asamardzic@gmail.com> PRGNAM=eet -VERSION=${VERSION:-1.1.0} +VERSION=${VERSION:-1.2.0} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -51,12 +51,14 @@ 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 + 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 COPYING-PLAIN ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |