diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 09:18:36 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 09:18:36 -0300 |
commit | 1158033ee283adff4b4497e4f5f38bfd0cd30bc6 (patch) | |
tree | 0be9e9a4370fd2aefc6b0b2e38fd165beb121877 /testing/happy | |
parent | f5e3722a8eb73a1d34f74d29e19eb4b8cc7f251d (diff) |
Removed testing and multilib stuff
Diffstat (limited to 'testing/happy')
-rw-r--r-- | testing/happy/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/happy/PKGBUILD b/testing/happy/PKGBUILD deleted file mode 100644 index f67f0c8d1..000000000 --- a/testing/happy/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 128129 2011-06-22 11:27:01Z vesa $ -# Maintainer: simo <simo@archlinux.org> -# Contributor: Vesa Kaihlavirta <vegai@iki.fi> - -pkgname=happy -pkgver=1.18.6 -pkgrel=1.2 -pkgdesc="The Parser Generator for Haskell" -url="http://www.haskell.org/happy/" -arch=('i686' 'x86_64' 'mips64el') -license=("custom:BSD3") -depends=(gmp) -makedepends=(ghc=7.0.3 haskell-mtl=2.0.1.0) -options=(strip) -source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz) -md5sums=('7d4d1425f5068633cd477a2b2216880d') - -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" -} - |