[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Sat Mar 13 20:35:00 UTC 2021


    Date: Saturday, March 13, 2021 @ 20:34:59
  Author: felixonmars
Revision: 890552

addpkg: haskell-bytestring-encoding 0.1.0.0-1

Added:
  haskell-bytestring-encoding/
  haskell-bytestring-encoding/repos/
  haskell-bytestring-encoding/trunk/
  haskell-bytestring-encoding/trunk/PKGBUILD

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

Added: haskell-bytestring-encoding/trunk/PKGBUILD
===================================================================
--- haskell-bytestring-encoding/trunk/PKGBUILD	                        (rev 0)
+++ haskell-bytestring-encoding/trunk/PKGBUILD	2021-03-13 20:34:59 UTC (rev 890552)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=bytestring-encoding
+pkgname=haskell-bytestring-encoding
+pkgver=0.1.0.0
+pkgrel=1
+pkgdesc="ByteString ↔ Text converter based on GHC.IO.Encoding"
+url="https://github.com/msakai/bytestring-encoding#readme"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+             'haskell-tasty-quickcheck' 'haskell-tasty-th')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('6d98a1e9ed7e0ca9619b4eb30fde61bab91593e74c4087873c22dede53e9f216')
+
+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