summaryrefslogtreecommitdiff
path: root/community-staging/happy/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/happy/PKGBUILD')
-rw-r--r--community-staging/happy/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/community-staging/happy/PKGBUILD b/community-staging/happy/PKGBUILD
deleted file mode 100644
index 9e690c0c4..000000000
--- a/community-staging/happy/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 76542 2012-09-22 15:25:35Z tdziedzic $
-# Maintainer: Thomas Dziedzic <gostrc@gmail.com>
-# Contributor: simo <simo@archlinux.org>
-# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
-
-pkgname=happy
-pkgver=1.18.10
-pkgrel=1
-pkgdesc="The Parser Generator for Haskell"
-url="http://hackage.haskell.org/package/happy"
-arch=('i686' 'x86_64')
-license=("custom:BSD3")
-depends=('gmp')
-makedepends=('ghc=7.6.1-1' 'haskell-mtl=2.1.2-1')
-source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('a1638e89434427e57f68ef311761dc30')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- # try was deprecated and removed into control.exception
- # we really want tryIOError
- #sed 's/try/&IOError/' -i Setup.lhs
-
- 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"
-}