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

Felix Yan felixonmars at archlinux.org
Fri Jan 8 11:55:53 UTC 2021


    Date: Friday, January 8, 2021 @ 11:55:52
  Author: felixonmars
Revision: 813692

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-listlike/repos/community-staging-x86_64/
  haskell-listlike/repos/community-staging-x86_64/PKGBUILD
    (from rev 813691, haskell-listlike/trunk/PKGBUILD)

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

Copied: haskell-listlike/repos/community-staging-x86_64/PKGBUILD (from rev 813691, haskell-listlike/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-01-08 11:55:52 UTC (rev 813692)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=ListLike
+pkgname=haskell-listlike
+pkgver=4.7.3
+pkgrel=7
+pkgdesc="Generic support for list-like structures"
+url="https://github.com/ddssff/listlike"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-dlist' 'haskell-fmlist' 'haskell-utf8-string' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-random')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
+        $pkgname-utf8-string-1.0.2.patch::https://github.com/ddssff/listlike/commit/c27e299bd5a638a617370780e17cd2faf04befdb.patch)
+sha512sums=('c463df1165be28067851fc5ee3f55b12dc4a490f411555a9eda5e0008bcd084bc2ff12123d4306e3493fa8a4933315aefcf1883afc783c245790910ac8522295'
+            'bf7032fe944d11b3dfeab3d12efcfc25f15284f12cc2be9cfd725050cc0ec5f02535852e142a5f7bdfadc16e9d0dd3b7bae508af17ca35c502f95ce1f6b663a0')
+
+prepare() {
+    patch -d $_hkgname-$pkgver -p1 < $pkgname-utf8-string-1.0.2.patch
+}
+
+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
+    runhaskell Setup build $MAKEFLAGS
+    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 "COPYRIGHT" "${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}



More information about the arch-commits mailing list