PKGBUILDs/community/haskell-cryptonite/PKGBUILD

46 lines
1.8 KiB
Bash
Raw Normal View History

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
2018-05-26 23:33:40 +00:00
pkgver=0.25
pkgrel=25
2017-07-12 00:43:01 +00:00
pkgdesc="Cryptography Primitives sink"
url="https://github.com/vincenthz/cryptonite"
license=("custom:BSD3")
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")
2018-05-26 23:33:40 +00:00
sha512sums=('e2c246b85595cca60c4d0f4eda737ab3be2a73ee012ba234c2b1a0111a7b77e04c6ba5597c807e3d2d48dc41e9b4fe0419ce95072e9977903c437b36350f0405')
2017-07-12 00:43:01 +00:00
build() {
cd "${srcdir}/${_hkgname}-${pkgver}"
2017-09-22 12:32:07 +00:00
runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
2017-07-12 00:43:01 +00:00
--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 "${srcdir}/${_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"
}