diff options
author | Larry Hajali <larryhaja@gmail.com> | 2014-06-01 10:34:34 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-01 10:34:34 +0700 |
commit | 63f1b11c0b4a59cb5adc4654f70443aa67bf3bc3 (patch) | |
tree | d2c770debf81308491f6be44194389498e54d7c4 /python/gst-python/gst-python.SlackBuild | |
parent | 36fe936fe53586c019b6964155df8a643f2d0c1a (diff) |
python/gst-python: Script cleanup + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/gst-python/gst-python.SlackBuild')
-rw-r--r-- | python/gst-python/gst-python.SlackBuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/python/gst-python/gst-python.SlackBuild b/python/gst-python/gst-python.SlackBuild index 53a4b4b96b1e..7d4b450f0551 100644 --- a/python/gst-python/gst-python.SlackBuild +++ b/python/gst-python/gst-python.SlackBuild @@ -8,9 +8,12 @@ # Maintained by Binh Nguyen <binhvng@gmail.com> # from version 0.10.19 +# Maintained by Larry Hajali <larryhaja[at]gmail[dot]com> +# from version 0.10.22 + PRGNAM=gst-python VERSION=${VERSION:-0.10.22} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -56,26 +59,20 @@ find -L . \ -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-silent-rules \ --build=$ARCH-slackware-linux make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 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 -a \ - AUTHORS COPYING ChangeLog INSTALL NEWS README RELEASE TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING ChangeLog NEWS RELEASE $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |