# Contributor: River Dillon <oss@outerpassage.net>
# Maintainer: Celeste <cielesti@protonmail.com>
maintainer="Celeste <cielesti@protonmail.com>"
pkgname=happy
pkgver=1.21.0
pkgrel=2
pkgdesc="Parser generator for Haskell"
url="https://www.haskell.org/happy/"
arch="x86_64 aarch64" # limited by ghc
license="BSD-2-Clause"
makedepends="ghc libffi-dev"
subpackages="$pkgname-doc"
source="https://hackage.haskell.org/package/happy-$pkgver/happy-$pkgver.tar.gz"

build() {
	runhaskell Setup.hs configure \
		"--prefix=/usr" \
		"--datasubdir=$pkgname" \
		"--docdir=\$datadir/doc/$pkgname" \
		"--enable-tests" \
		-f -bootstrap
	runhaskell Setup.hs build -j "--ghc-options=-j -O1"
}

check() {
	runhaskell Setup.hs test
}

package() {
	runhaskell Setup.hs copy "--destdir=$pkgdir"
}

sha512sums="
d63e33fe958865c560eed01e54f3384d09b6b2b2282480db302366492d18a7fd67f530d92206f8ff19e0842942f608a8d226ea66cd947583c78e800f6d580fec  happy-1.21.0.tar.gz
"
