[arch-commits] Commit in haskell-brainfuck/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Sun Aug 21 07:57:17 UTC 2022


    Date: Sunday, August 21, 2022 @ 07:57:16
  Author: felixonmars
Revision: 1271800

archrelease: copy trunk to community-x86_64

Added:
  haskell-brainfuck/repos/community-x86_64/
  haskell-brainfuck/repos/community-x86_64/PKGBUILD
    (from rev 1271799, haskell-brainfuck/trunk/PKGBUILD)

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

Copied: haskell-brainfuck/repos/community-x86_64/PKGBUILD (from rev 1271799, haskell-brainfuck/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2022-08-21 07:57:16 UTC (rev 1271800)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=brainfuck
+pkgname=haskell-brainfuck
+pkgver=0.1.0.3
+pkgrel=1
+pkgdesc="Brainfuck interpreter"
+url="https://github.com/abbradar/brainfuck"
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('0db5370311ec8a3a1673fd04e502fd10e0afa0df5ee25d3a917937d3d9668bf6')
+
+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=-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