[arch-commits] Commit in (4 files)
Felix Yan
felixonmars at gemini.archlinux.org
Fri Aug 26 21:23:15 UTC 2022
Date: Friday, August 26, 2022 @ 21:23:15
Author: felixonmars
Revision: 1284438
addpkg: haskell-isomorphism-class 0.1.0.6-1
Added:
haskell-isomorphism-class/
haskell-isomorphism-class/repos/
haskell-isomorphism-class/trunk/
haskell-isomorphism-class/trunk/PKGBUILD
----------+
PKGBUILD | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
Added: haskell-isomorphism-class/trunk/PKGBUILD
===================================================================
--- haskell-isomorphism-class/trunk/PKGBUILD (rev 0)
+++ haskell-isomorphism-class/trunk/PKGBUILD 2022-08-26 21:23:15 UTC (rev 1284438)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=isomorphism-class
+pkgname=haskell-isomorphism-class
+pkgver=0.1.0.6
+pkgrel=1
+pkgdesc="Isomorphism typeclass solving the conversion problem"
+url="https://github.com/nikita-volkov/isomorphism-class"
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable' 'haskell-primitive' 'haskell-unordered-containers'
+ 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-rebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('a336b4fef3ffd4ee34a7c5b75192632a8f5fea661eb093c99c383e3050d9c96b')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ gen-setup
+}
+
+build() {
+ cd $_hkgname-$pkgver
+
+ # Tests are disabled because they require bytestring 0.11 which is available in GHC 9.2
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname --disable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+ --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+ --ghc-option='-pie'
+
+ runhaskell Setup build
+ 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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list