Date: Sunday, June 5, 2022 @ 16:54:36 Author: felixonmars Revision: 1223247
archrelease: copy trunk to community-staging-x86_64 Added: haskell-indexed-list-literals/repos/community-staging-x86_64/ haskell-indexed-list-literals/repos/community-staging-x86_64/PKGBUILD (from rev 1223246, haskell-indexed-list-literals/trunk/PKGBUILD) ----------+ PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) Copied: haskell-indexed-list-literals/repos/community-staging-x86_64/PKGBUILD (from rev 1223246, haskell-indexed-list-literals/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-06-05 16:54:36 UTC (rev 1223247) @@ -0,0 +1,45 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=indexed-list-literals +pkgname=haskell-indexed-list-literals +pkgver=0.2.1.3 +pkgrel=52 +pkgdesc="Type safe indexed list literals" +url="https://github.com/davidm-d/indexed-list-literals" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-only') +makedepends=('ghc' 'haskell-hspec') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('26e399e285ddf44822781559f7202ed821382457ed6c1c32bdaac7945c033f9d') + +build() { + cd $_hkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname --enable-tests \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \ + --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' + + 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 -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +} \ No newline at end of file