Date: Monday, February 15, 2021 @ 04:40:08 Author: felixonmars Revision: 860668
archrelease: copy trunk to community-staging-x86_64 Added: haskell-should-not-typecheck/repos/community-staging-x86_64/ haskell-should-not-typecheck/repos/community-staging-x86_64/PKGBUILD (from rev 860667, haskell-should-not-typecheck/trunk/PKGBUILD) ----------+ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) Copied: haskell-should-not-typecheck/repos/community-staging-x86_64/PKGBUILD (from rev 860667, haskell-should-not-typecheck/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-02-15 04:40:08 UTC (rev 860668) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=should-not-typecheck +pkgname=haskell-should-not-typecheck +pkgver=2.1.0 +pkgrel=129 +pkgdesc="A HUnit/hspec assertion library to verify that an expression does not typecheck" +url="https://github.com/CRogers/should-not-typecheck" +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-hunit') +makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-expectations') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('46ba4435a4408e23dfe6e04f827a7efcfd3c94a4a53a0562061d5cd40c11fcbae7569e695329fe98f9d9ecea1999ac68da6594d2ca60c2efccdac2d6d674d65d') + +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 + runhaskell Setup build $MAKEFLAGS + 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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}