diff options
author | Aleksandar Samardzic <asamardzic@gmail.com> | 2010-05-12 17:40:32 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:40:32 +0200 |
commit | 56d66e0c5febf8c127461562d18687eb61e212f4 (patch) | |
tree | 30482734d30f90a2462749421c83b440df3be25b /libraries/evas/evas.SlackBuild | |
parent | 901511a4b84d9a451f69d06186603ebf56cbc521 (diff) |
libraries/evas: Updated for version 0.9.9.060
Diffstat (limited to 'libraries/evas/evas.SlackBuild')
-rw-r--r-- | libraries/evas/evas.SlackBuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libraries/evas/evas.SlackBuild b/libraries/evas/evas.SlackBuild index 262f49d09648..c3f06bc709c9 100644 --- a/libraries/evas/evas.SlackBuild +++ b/libraries/evas/evas.SlackBuild @@ -5,7 +5,7 @@ # Written by Aleksandar Samardzic <asamardzic@gmail.com> PRGNAM=evas -VERSION=${VERSION:-0.9.9.050} +VERSION=${VERSION:-0.9.9.060} 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 |