diff options
author | Mikko Värri <vmj@linuxbox.fi> | 2012-01-10 17:19:37 -0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2012-01-13 14:43:36 -0600 |
commit | 686760b0932b273bff69b0ccfa59eba2b1fe8012 (patch) | |
tree | cf228310ff1fa7504c386df982a4f2e4be4a74e3 /haskell/haskell-terminfo/haskell-terminfo.SlackBuild | |
parent | b8a44d100d6e9b8ca53ceba2f2b80fa58e775f8b (diff) | |
download | slackbuilds-686760b0932b273bff69b0ccfa59eba2b1fe8012.tar.gz |
haskell/haskell-terminfo: Updated for version 0.3.2.3.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'haskell/haskell-terminfo/haskell-terminfo.SlackBuild')
-rw-r--r-- | haskell/haskell-terminfo/haskell-terminfo.SlackBuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/haskell/haskell-terminfo/haskell-terminfo.SlackBuild b/haskell/haskell-terminfo/haskell-terminfo.SlackBuild index 82c12e904a..c2c159cc94 100644 --- a/haskell/haskell-terminfo/haskell-terminfo.SlackBuild +++ b/haskell/haskell-terminfo/haskell-terminfo.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for terminfo -# Copyright 2011 Mikko Värri, Finland +# Copyright 2012 Mikko Värri, Finland # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,8 +23,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=haskell-terminfo -VERSION=${VERSION:-0.3.1.3} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.3.2.3} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRCNAM="$( echo $PRGNAM | cut -d- -f2- )" @@ -75,24 +75,24 @@ find . \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ -runghc Setup.lhs configure \ +runghc Setup configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --libsubdir=ghc-${GHC_VERSION}/$SRCNAM-$VERSION \ --enable-shared \ --docdir=/usr/doc/$PRGNAM-$VERSION -runghc Setup.lhs build -runghc Setup.lhs haddock -runghc Setup.lhs copy --destdir=$PKG -runghc Setup.lhs register --gen-pkg-config +runghc Setup build +runghc Setup haddock +runghc Setup copy --destdir=$PKG +runghc Setup register --gen-pkg-config PKGCONFD=/usr/lib${LIBDIRSUFFIX}/ghc-${GHC_VERSION}/package.conf.d PKGID=$( grep -E "^id: " $SRCNAM-$VERSION.conf | cut -d" " -f2 ) mkdir -p $PKG/$PKGCONFD mv $SRCNAM-$VERSION.conf $PKG/$PKGCONFD/$PKGID.conf -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 |