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

Felix Yan felixonmars at archlinux.org
Wed Jan 8 20:09:00 UTC 2020


    Date: Wednesday, January 8, 2020 @ 20:08:59
  Author: felixonmars
Revision: 550598

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optional-args/repos/community-staging-x86_64/
  haskell-optional-args/repos/community-staging-x86_64/PKGBUILD
    (from rev 550597, haskell-optional-args/trunk/PKGBUILD)

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

Copied: haskell-optional-args/repos/community-staging-x86_64/PKGBUILD (from rev 550597, haskell-optional-args/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-01-08 20:08:59 UTC (rev 550598)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Thomas Dziedzic <gostrc at gmail.com>
+
+_hkgname=optional-args
+pkgname=haskell-optional-args
+pkgver=1.0.2
+pkgrel=9
+pkgdesc="Optional function arguments"
+url="https://github.com/Gabriel439/Haskell-Optional-Args-Library"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('eb9bd475f61f1caa1d632bef9b87c6ac28319b2eca5cf103558841032b994afd9cc8bdd29e87a49c136481fae4ec1d0105203294fa84d04bd843ab310bc4f63c')
+
+build() {
+    cd $_hkgname-$pkgver
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    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
+}
+
+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