diff options
Diffstat (limited to 'community/haskell-quickcheck/PKGBUILD')
-rw-r--r-- | community/haskell-quickcheck/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/community/haskell-quickcheck/PKGBUILD b/community/haskell-quickcheck/PKGBUILD index 937d26326..83c7e7307 100644 --- a/community/haskell-quickcheck/PKGBUILD +++ b/community/haskell-quickcheck/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 89314 2013-04-28 16:52:36Z td123 $ +# $Id: PKGBUILD 99290 2013-10-26 17:33:27Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Vesa Kaihlavirta <vesa@archlinux.org> # Contributor: Arch Haskell Team <arch-haskell@haskell.org> @@ -6,18 +6,19 @@ _hkgname=QuickCheck pkgname=haskell-quickcheck pkgver=2.6 -pkgrel=2 +pkgrel=3 pkgdesc='Automatic testing of Haskell programs' url='http://hackage.haskell.org/package/QuickCheck' license=('custom:BSD3') arch=('x86_64' 'i686') -depends=('ghc=7.6.3-1' 'haskell-random=1.0.1.1-5' 'sh') -source=("http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz") -install=${pkgname}.install +depends=('ghc' 'haskell-random') +source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +install="$pkgname.install" +options=('staticlibs') sha256sums=('8001c00a1892714d914e5007ba72cdd428c1ea4c6b8418c6cb5e7809753d970d') build() { - cd "$srcdir/$_hkgname-$pkgver" + cd "$_hkgname-$pkgver" runhaskell Setup configure -O -p \ --enable-split-objs \ @@ -33,7 +34,7 @@ build() { } package() { - cd "$srcdir/$_hkgname-$pkgver" + cd "$_hkgname-$pkgver" install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh" install -m744 unregister.sh \ |