mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
45 lines
1.8 KiB
Bash
45 lines
1.8 KiB
Bash
# 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
|
|
|
|
buildarch=4
|
|
|
|
_hkgname=cryptonite
|
|
pkgname=haskell-cryptonite
|
|
pkgver=0.26
|
|
pkgrel=15
|
|
pkgdesc="Cryptography Primitives sink"
|
|
url="https://github.com/vincenthz/cryptonite"
|
|
license=("BSD")
|
|
arch=('x86_64')
|
|
depends=('ghc-libs' 'haskell-basement' 'haskell-memory')
|
|
makedepends=('ghc')
|
|
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('4236d411542fd104e5cace61fbdeda615f7d13e442594d7fa12acc682d917b0494b10b242a88fef19e91e93489797206fee07497bff92e43d3849ebac8ee11b0')
|
|
|
|
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 \
|
|
-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() {
|
|
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"
|
|
}
|