From 073d6a748570eb8101ef9278cb9fceb862ff654e Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Mon, 7 Mar 2011 09:03:24 +0700 Subject: [PATCH] =?UTF-8?q?simplify=20(what=20was=20I=20thinking=E2=B8=98)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- d/rpl/rpl.SlackBuild | 86 +++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 49 deletions(-) diff --git a/d/rpl/rpl.SlackBuild b/d/rpl/rpl.SlackBuild index 66497ad5..7bb61bce 100755 --- a/d/rpl/rpl.SlackBuild +++ b/d/rpl/rpl.SlackBuild @@ -19,68 +19,57 @@ PKG=$TMP/pkg-$PRGNAM PREFIX=/usr # Cleaning -( cd $TMP - rm -fr $PRGNAM-$VERSION - rm -fr $PKG -) +cd $TMP +rm -fr $PRGNAM-$VERSION +rm -fr $PKG # Fetching sources -( cd $TMP - [ ! -e $CWD/$PRGNAM-$VERSION.tar.?z* ] && wget -c http://www.rpl2.net/download/$PRGNAM-$VERSION.tar.bz2 -O $CWD/$PRGNAM-$VERSION.tar.bz2 - tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* -) +[ ! -e $CWD/$PRGNAM-$VERSION.tar.?z* ] && wget -c http://www.rpl2.net/download/$PRGNAM-$VERSION.tar.bz2 -O $CWD/$PRGNAM-$VERSION.tar.bz2 +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* # Preparation -( cd $TMP/$PRGNAM-$VERSION - chown -R root:root . - find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; -) +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; # Configuration -( cd $TMP/$PRGNAM-$VERSION - ./configure \ - --prefix=$PREFIX \ - --mandir=$PREFIX/man \ - --infodir=$PREFIX/info \ - --libdir=$PREFIX/lib$LIBSUFFIX \ - --enable-experimental #I heart danger -) +./configure \ + --prefix=$PREFIX \ + --mandir=$PREFIX/man \ + --infodir=$PREFIX/info \ + --libdir=$PREFIX/lib$LIBSUFFIX \ + --enable-experimental #I heart danger # Building -( cd $TMP/$PRGNAM-$VERSION - make -) +make # Installation -( cd $TMP/$PRGNAM-$VERSION - make install DESTDIR=$PKG -) +make install DESTDIR=$PKG # Cleaning -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +cd $PKG +find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \; - find $PKG$PREFIX/info -name "dir" -exec rm {} \; - find $PKG$PREFIX/info -type f -exec gzip -9 {} \; +find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \; +find $PKG$PREFIX/info -name "dir" -exec rm {} \; +find $PKG$PREFIX/info -type f -exec gzip -9 {} \; + +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; - chown -R root:root . - find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; -) # Packaging -( cd $PKG - mkdir install - cat < $PKG/install/doinst.sh +mkdir install +cat < $PKG/install/doinst.sh cd /usr/info for file in \$(ls *.gz | grep -v ".*\-[0-9]\+\.gz") do @@ -88,7 +77,7 @@ do done EOF - cat < $PKG/install/slack-desc +cat < $PKG/install/slack-desc $PRGNAM: $PRGNAM (programming language) $PRGNAM: $PRGNAM: a programming language designed for scientific computations. @@ -102,6 +91,5 @@ $PRGNAM: http://www.rpl2.net/ $PRGNAM: EOF - makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz -) +makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz