Date: Thursday, October 29, 2020 @ 13:41:46 Author: felixonmars Revision: 736508
archrelease: copy trunk to community-x86_64 Added: bnfc/repos/community-x86_64/ bnfc/repos/community-x86_64/PKGBUILD (from rev 736507, bnfc/trunk/PKGBUILD) ----------+ PKGBUILD | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) Copied: bnfc/repos/community-x86_64/PKGBUILD (from rev 736507, bnfc/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2020-10-29 13:41:46 UTC (rev 736508) @@ -0,0 +1,57 @@ +# This file was generated by arch-hs, please check it manually. +# Maintainer: Your Name <yourem...@domain.com> + +_hkgname=BNFC +pkgname=bnfc +pkgver=2.8.4 +pkgrel=1 +pkgdesc="A compiler front-end generator." +url="http://bnfc.digitalgrammars.com/" +license=("GPL2") +arch=('x86_64') +depends=('ghc-libs') +optdepends=('ghc: for default haskell backend' + 'alex: for default haskell backend' + 'happy: for default haskell backend') +makedepends=('ghc' 'alex' 'happy' 'haskell-hunit' 'haskell-quickcheck' 'haskell-doctest' + 'haskell-hspec' 'haskell-temporary') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('cdbec6fb79208ceebac9a078f93043568b2f497e8ff5eb00750290eaaec3047d') + +prepare() { + sed -i '/semigroups/d' $_hkgname-$pkgver/$_hkgname.cabal + + # Use -dynamic by default + sed -i 's/ghc --make/ghc -dynamic --make/g' $_hkgname-$pkgver/src/BNFC/Backend/Haskell.hs +} + +build() { + cd $_hkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ + --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' + + runhaskell Setup build + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { + cd $_hkgname-$pkgver + runhaskell Setup test +} + +package() { + cd $_hkgname-$pkgver + + install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh + install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh + runhaskell Setup copy --destdir="$pkgdir" + install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}