[arch-commits] Commit in haskell-first-class-families/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Mon Jan 10 16:43:06 UTC 2022
Date: Monday, January 10, 2022 @ 16:43:05
Author: felixonmars
Revision: 1099447
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-first-class-families/repos/community-staging-x86_64/
haskell-first-class-families/repos/community-staging-x86_64/PKGBUILD
(from rev 1099446, haskell-first-class-families/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-first-class-families/repos/community-staging-x86_64/PKGBUILD (from rev 1099446, haskell-first-class-families/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-01-10 16:43:05 UTC (rev 1099447)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=first-class-families
+pkgname=haskell-first-class-families
+pkgver=0.8.0.1
+pkgrel=4
+pkgdesc="First class type families"
+url="https://github.com/Lysxia/first-class-families"
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d1c24baee2cb9379ae8c13d20e6c1f86bf78b8e51bcc212d977cadae96912f19e2de0aa4d938ed8695461a01d712c1b23bd24f48af7a6d3628f78adf2a696a1f')
+
+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