2017-07-12 00:43:01 +00:00
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# Contributor: Arch Haskell Team <arch-haskell@haskell.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove -fsupport_aesni and -fsupport_sse
|
|
|
|
|
2018-06-28 18:35:17 +00:00
|
|
|
buildarch=4
|
|
|
|
|
2017-07-12 00:43:01 +00:00
|
|
|
_hkgname=cryptonite
|
|
|
|
pkgname=haskell-cryptonite
|
2019-05-23 13:52:55 +00:00
|
|
|
pkgver=0.26
|
2019-06-10 12:36:08 +00:00
|
|
|
pkgrel=5
|
2017-07-12 00:43:01 +00:00
|
|
|
pkgdesc="Cryptography Primitives sink"
|
|
|
|
url="https://github.com/vincenthz/cryptonite"
|
2018-12-11 05:20:43 +00:00
|
|
|
license=("BSD")
|
2017-11-13 00:14:39 +00:00
|
|
|
arch=('x86_64')
|
2018-05-26 23:33:40 +00:00
|
|
|
depends=('ghc-libs' 'haskell-basement' 'haskell-memory')
|
2017-09-16 18:05:45 +00:00
|
|
|
makedepends=('ghc')
|
2017-07-12 00:43:01 +00:00
|
|
|
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
|
2019-05-23 13:52:55 +00:00
|
|
|
sha512sums=('4236d411542fd104e5cace61fbdeda615f7d13e442594d7fa12acc682d917b0494b10b242a88fef19e91e93489797206fee07497bff92e43d3849ebac8ee11b0')
|
2017-07-12 00:43:01 +00:00
|
|
|
|
|
|
|
build() {
|
2018-11-08 13:26:19 +00:00
|
|
|
cd $_hkgname-$pkgver
|
2017-07-12 00:43:01 +00:00
|
|
|
|
2017-09-22 12:32:07 +00:00
|
|
|
runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
|
2018-11-08 13:26:19 +00:00
|
|
|
--prefix=/usr --docdir=/usr/share/doc/$pkgname \
|
2017-07-12 00:43:01 +00:00
|
|
|
--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
|
|
|
|
-fsupport_deepseq -finteger-gmp -f-support_pclmuldq -fsupport_rdrand \
|
|
|
|
-f-old_toolchain_inliner -f-check_alignment
|
|
|
|
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() {
|
2018-11-08 13:26:19 +00:00
|
|
|
cd $_hkgname-$pkgver
|
2017-07-12 00:43:01 +00:00
|
|
|
|
2018-11-08 13:26:19 +00:00
|
|
|
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"
|
2017-07-12 00:43:01 +00:00
|
|
|
install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
|
|
|
|
}
|