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

Felix Yan felixonmars at gemini.archlinux.org
Tue Aug 23 16:39:55 UTC 2022


    Date: Tuesday, August 23, 2022 @ 16:39:54
  Author: felixonmars
Revision: 1275503

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-cipher-aes128/repos/community-staging-x86_64/
  haskell-cipher-aes128/repos/community-staging-x86_64/PKGBUILD
    (from rev 1275502, haskell-cipher-aes128/trunk/PKGBUILD)

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

Copied: haskell-cipher-aes128/repos/community-staging-x86_64/PKGBUILD (from rev 1275502, haskell-cipher-aes128/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-08-23 16:39:54 UTC (rev 1275503)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=cipher-aes128
+pkgname=haskell-cipher-aes128
+pkgver=0.7.0.6
+pkgrel=4
+pkgdesc="AES and common modes using AES-NI when available."
+url="https://github.com/TomMD/cipher-aes128"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-crypto-api' 'haskell-tagged' 'haskell-cereal')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0cf5a7ef2a23e5ff22fc0304f5e774be0fa8688ef85e391c6d0d7ac2babf3ec8d581db9ca77daa640508ae897a691b1e04724b89b29dbcba6399a0ba882c1818')
+
+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 \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm
+    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
+}
+
+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