[arch-commits] Commit in (4 files)

Felix Yan felixonmars at gemini.archlinux.org
Tue Mar 22 00:40:01 UTC 2022


    Date: Tuesday, March 22, 2022 @ 00:40:01
  Author: felixonmars
Revision: 1169541

addpkg: haskell-barbies 2.0.3.1-1

Added:
  haskell-barbies/
  haskell-barbies/repos/
  haskell-barbies/trunk/
  haskell-barbies/trunk/PKGBUILD

----------+
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

Added: haskell-barbies/trunk/PKGBUILD
===================================================================
--- haskell-barbies/trunk/PKGBUILD	                        (rev 0)
+++ haskell-barbies/trunk/PKGBUILD	2022-03-22 00:40:01 UTC (rev 1169541)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=barbies
+pkgname=haskell-barbies
+pkgver=2.0.3.1
+pkgrel=1
+pkgdesc="Classes for working with types that can change clothes."
+url="https://github.com/jcpetruzza/barbies#readme"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-distributive')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+             'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('a13c1fd05e3e006bd0874d77e1930c5225765e83fa9925b2c5c1df314559df3d')
+
+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=-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