diff options
author | Mikko Värri <vmj@linuxbox.fi> | 2012-06-27 16:10:09 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-06-27 16:10:09 -0400 |
commit | 764106c2d26e4c00a8ecac19e5a706d0d17503cf (patch) | |
tree | 249abc954d8167e69658ac6559229ee9ebaf8b69 /haskell/haskell-texmath/haskell-texmath.SlackBuild | |
parent | 6febe00bb34a9b9eee829d74a9e3444fe1303d29 (diff) | |
download | slackbuilds-764106c2d26e4c00a8ecac19e5a706d0d17503cf.tar.gz |
haskell/haskell-texmath: Updated for version 0.6.0.6.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'haskell/haskell-texmath/haskell-texmath.SlackBuild')
-rw-r--r-- | haskell/haskell-texmath/haskell-texmath.SlackBuild | 47 |
1 files changed, 33 insertions, 14 deletions
diff --git a/haskell/haskell-texmath/haskell-texmath.SlackBuild b/haskell/haskell-texmath/haskell-texmath.SlackBuild index 953ae667b8..35a3f5be56 100644 --- a/haskell/haskell-texmath/haskell-texmath.SlackBuild +++ b/haskell/haskell-texmath/haskell-texmath.SlackBuild @@ -3,10 +3,28 @@ # Slackware build script for texmath # Written by Peter Wang <novalazy@gmail.com> -# Public domain. +# Copyright 2012 Mikko Värri, Finland +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=haskell-texmath -VERSION=${VERSION:-0.5.0.1} +VERSION=${VERSION:-0.6.0.6} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -58,17 +76,18 @@ find . \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ -runghc Setup.hs configure \ - --prefix=/usr \ - --enable-shared \ - --libdir=/usr/lib$LIBDIRSUFFIX \ - --libsubdir=ghc-$GHC_VERSION/$SRCNAM-$VERSION \ - --docdir=/usr/doc/$PRGNAM-$VERSION - -runghc Setup.hs build -runghc Setup.hs haddock -runghc Setup.hs copy --destdir=$PKG -runghc Setup.hs register --gen-pkg-config +runghc Setup configure \ + --prefix=/usr \ + --enable-shared \ + --enable-library-profiling \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --libsubdir=ghc-${GHC_VERSION}/$SRCNAM-$VERSION \ + --docdir=/usr/doc/$PRGNAM-$VERSION + +runghc Setup build +runghc Setup haddock +runghc Setup copy --destdir=$PKG +runghc Setup register --gen-pkg-config # Remove test data. rm -r $PKG/usr/share @@ -78,7 +97,7 @@ 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 |