Date: Sunday, May 20, 2018 @ 16:29:06 Author: felixonmars Revision: 325421
addpkg: haskell-cipher-aes128 0.7.0.3-1 Added: haskell-cipher-aes128/ haskell-cipher-aes128/repos/ haskell-cipher-aes128/trunk/ haskell-cipher-aes128/trunk/PKGBUILD ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Added: haskell-cipher-aes128/trunk/PKGBUILD =================================================================== --- haskell-cipher-aes128/trunk/PKGBUILD (rev 0) +++ haskell-cipher-aes128/trunk/PKGBUILD 2018-05-20 16:29:06 UTC (rev 325421) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> + +_hkgname=cipher-aes128 +pkgname=haskell-cipher-aes128 +pkgver=0.7.0.3 +pkgrel=1 +pkgdesc="AES and common modes using AES-NI when available." +url="https://github.com/TomMD/cipher-aes128" +license=('custom:BSD3') +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=('72bd1cca4ccd31be08096a53dffa9fa855b24b226904327a417f797b8b8a799d368ef00f75f9a81234a12c659b63d595d58f263cc3a4d544942be7edada413b7') + +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" +} Property changes on: haskell-cipher-aes128/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
