[arch-commits] Commit in haskell-th-expand-syns/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Fri Dec 24 23:22:41 UTC 2021
Date: Friday, December 24, 2021 @ 23:22:41
Author: felixonmars
Revision: 1083464
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-th-expand-syns/repos/community-staging-x86_64/
haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD
(from rev 1083463, haskell-th-expand-syns/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from rev 1083463, haskell-th-expand-syns/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-12-24 23:22:41 UTC (rev 1083464)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=th-expand-syns
+pkgname=haskell-th-expand-syns
+pkgver=0.4.9.0
+pkgrel=1
+pkgdesc="Expands type synonyms in Template Haskell ASTs"
+url="https://hackage.haskell.org/package/th-expand-syns"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-syb' 'haskell-th-abstraction')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ff20a81e37bbefa246c6c1c596f69f83f1d2f7fdbb217556d42fff1cedbf064b65cc6e005806022221b4b6bc5e5f1dcda75ca9b51efcff6d14bfe0e6b658485d')
+
+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
+ 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
+}
More information about the arch-commits
mailing list