diff options
author | Andy Bailey <GooseYArd@gmail.com> | 2010-07-25 18:24:22 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-25 21:52:41 -0500 |
commit | 5120869d0f712786f728f01a0953f1e83a781c23 (patch) | |
tree | d44d9716c726a715f5a33344b6bf2d392429af14 /libraries | |
parent | ae0cab8b64cfabc8e5a551861e665f8975a2a115 (diff) | |
download | slackbuilds-5120869d0f712786f728f01a0953f1e83a781c23.tar.gz |
libraries/haskell-hinotify: Build bump, various changes.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/haskell-hinotify/README | 3 | ||||
-rw-r--r-- | libraries/haskell-hinotify/doinst.sh | 5 | ||||
-rw-r--r-- | libraries/haskell-hinotify/haskell-hinotify.SlackBuild | 28 | ||||
-rw-r--r-- | libraries/haskell-hinotify/haskell-hinotify.info | 2 |
4 files changed, 21 insertions, 17 deletions
diff --git a/libraries/haskell-hinotify/README b/libraries/haskell-hinotify/README index 4e559c757b..4b31faab0f 100644 --- a/libraries/haskell-hinotify/README +++ b/libraries/haskell-hinotify/README @@ -3,3 +3,6 @@ a file or directory and get an event when it is accessed or modified. This package provides haskell bindings for inotify. This requires ghc. + +After uninstalling, run this command to unregister the package from +the ghc package database: ghc-pkg recache diff --git a/libraries/haskell-hinotify/doinst.sh b/libraries/haskell-hinotify/doinst.sh index 87825cdcca..3268c238bf 100644 --- a/libraries/haskell-hinotify/doinst.sh +++ b/libraries/haskell-hinotify/doinst.sh @@ -1,4 +1 @@ -chroot . sh /install/register.sh -rm -f install/register.sh -rmdir install 2>/dev/null - +chroot . /usr/bin/ghc-pkg recache diff --git a/libraries/haskell-hinotify/haskell-hinotify.SlackBuild b/libraries/haskell-hinotify/haskell-hinotify.SlackBuild index 772290dd75..0374b97aea 100644 --- a/libraries/haskell-hinotify/haskell-hinotify.SlackBuild +++ b/libraries/haskell-hinotify/haskell-hinotify.SlackBuild @@ -1,18 +1,18 @@ #!/bin/sh -# Slackware build script for haskell-hinotify +# Slackware build script for hinotify -# Written by Mikko Varri (vmj@linuxbox.fi) +# Written by Mikko Värri (vmj@linuxbox.fi) # Modified by Andy Bailey (GooseYArd@gmail.com) for hinotify # Public domain. -PRGNAM=haskell-hinotify +SRCNAM=hinotify +PRGNAM=haskell-$SRCNAM VERSION=${VERSION:-0.3.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -TARNAM=hinotify -GHC_VERSION=$(ghc-pkg field ghc version | cut -d' ' -f2) +GHC_VERSION=$(ghc --numeric-version) # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -48,9 +48,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $TARNAM-$VERSION -tar xvf $CWD/$TARNAM-$VERSION.tar.gz -cd $TARNAM-$VERSION +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -64,13 +64,18 @@ runghc Setup.lhs configure \ --prefix=/usr \ --enable-shared \ --libdir=/usr/lib${LIBDIRSUFFIX} \ - --libsubdir=ghc-${GHC_VERSION}/$TARNAM-$VERSION \ + --libsubdir=ghc-${GHC_VERSION}/$SRCNAM-$VERSION \ --docdir=/usr/doc/$PRGNAM-$VERSION runghc Setup.lhs build runghc Setup.lhs haddock runghc Setup.lhs copy --destdir=$PKG -runghc Setup.lhs register --gen-script +runghc Setup.lhs 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 \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true @@ -80,7 +85,6 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc -mv $TMP/$TARNAM-$VERSION/register.sh $PKG/install/register.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/haskell-hinotify/haskell-hinotify.info b/libraries/haskell-hinotify/haskell-hinotify.info index 241006e63e..728dd9939d 100644 --- a/libraries/haskell-hinotify/haskell-hinotify.info +++ b/libraries/haskell-hinotify/haskell-hinotify.info @@ -7,4 +7,4 @@ DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Andy Bailey" EMAIL="GooseYArd@gmail.com" -APPROVED="rworkman" +APPROVED="Erik Hanson" |