From 6b69914eb4988b6c10dc7550f07be13e5be6193f Mon Sep 17 00:00:00 2001 From: felixonmars Date: Thu, 27 Jan 2022 19:52:26 +0000 Subject: [PATCH] archrelease: copy trunk to community-staging-x86_64 git-svn-id: file:///srv/repos/svn-community/svn@1117462 9fca08f4-af9d-4005-b8df-a31f2cc04f65 --- .../repos/community-staging-x86_64/PKGBUILD | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 haskell-reflection/repos/community-staging-x86_64/PKGBUILD diff --git a/haskell-reflection/repos/community-staging-x86_64/PKGBUILD b/haskell-reflection/repos/community-staging-x86_64/PKGBUILD new file mode 100644 index 000000000000..c78166f0fe04 --- /dev/null +++ b/haskell-reflection/repos/community-staging-x86_64/PKGBUILD @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=reflection +pkgname=haskell-reflection +pkgver=2.1.6 +pkgrel=121 +pkgdesc="Reifies arbitrary terms into types that can be reflected back into terms" +url="https://github.com/ekmett/reflection" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") +sha512sums=('d7f615b6f361b2ca7266e8c4611c939d9f80684ca173080e9ad8227f04f2731899113dcb87ecb051d47b29fb860d7caa15c99c7d3d7493e7e73745d085518fdd') + +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=-fllvm \ + -ftemplate-haskell -f-slow + 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 --show-details=direct +} + +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 +}