diff options
author | root <root@rshg054.dnsready.net> | 2012-03-18 00:02:54 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-18 00:02:54 +0000 |
commit | d14a25fc4f65ae3d6e62f4668e9cb88d74834255 (patch) | |
tree | 7c4f618283e9b502f0d9cfb5059ce38daa7738be /community/happy | |
parent | 9a940818cc3edb82afac4d73a6474e6e3374f987 (diff) |
Sun Mar 18 00:02:53 UTC 2012
Diffstat (limited to 'community/happy')
-rw-r--r-- | community/happy/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/happy/PKGBUILD b/community/happy/PKGBUILD new file mode 100644 index 000000000..783bb51d6 --- /dev/null +++ b/community/happy/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 67990 2012-03-16 18:40:06Z tdziedzic $ +# Maintainer: Thomas Dziedzic <gostrc@gmail.com> +# Contributor: simo <simo@archlinux.org> +# Contributor: Vesa Kaihlavirta <vegai@iki.fi> + +pkgname=happy +pkgver=1.18.9 +pkgrel=4 +pkgdesc="The Parser Generator for Haskell" +url="http://www.haskell.org/happy/" +arch=('i686' 'x86_64') +license=("custom:BSD3") +depends=('gmp') +makedepends=('ghc=7.4.1' 'haskell-mtl=2.0.1.0-4') +source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('aeb565fe572f979f15a24db0df2de37d') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + runhaskell Setup.lhs configure -O --prefix=/usr + runhaskell Setup.lhs build +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + runhaskell Setup.lhs copy --destdir="${pkgdir}" + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |