diff options
author | David Woodfall <dave@dawoodfall.net> | 2010-05-10 23:47:01 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-16 22:24:22 -0500 |
commit | d132b8b042edf87acf5fc78b3d464d1748106bf4 (patch) | |
tree | 4870d6bb7e899be778025e1a972b38057144dd8e /libraries/libnice/libnice.SlackBuild | |
parent | b1666c26f0f2cc0af2335637915a8838c1e7e81f (diff) | |
download | slackbuilds-d132b8b042edf87acf5fc78b3d464d1748106bf4.tar.gz |
libraries/libnice: Updated for version 0.0.11.
Diffstat (limited to 'libraries/libnice/libnice.SlackBuild')
-rw-r--r-- | libraries/libnice/libnice.SlackBuild | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/libraries/libnice/libnice.SlackBuild b/libraries/libnice/libnice.SlackBuild index c48445de4b..b373707133 100644 --- a/libraries/libnice/libnice.SlackBuild +++ b/libraries/libnice/libnice.SlackBuild @@ -27,7 +27,7 @@ PRGNAM=libnice -VERSION=${VERSION:-0.0.10} +VERSION=${VERSION:-0.0.11} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -77,20 +77,8 @@ CXXFLAGS="$SLKCFLAGS" \ 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 -) - -( cd $PKG - # Remove 'special' files - find . -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp AUTHORS ChangeLog NEWS COPYING INSTALL README COPYING.LGPL TODO COPYING.MPL \ |