Date: Wednesday, March 18, 2020 @ 13:54:09 Author: felixonmars Revision: 600545
archrelease: copy trunk to community-staging-x86_64 Added: haskell-ghc-typelits-extra/repos/community-staging-x86_64/ haskell-ghc-typelits-extra/repos/community-staging-x86_64/PKGBUILD (from rev 600544, haskell-ghc-typelits-extra/trunk/PKGBUILD) ----------+ PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) Copied: haskell-ghc-typelits-extra/repos/community-staging-x86_64/PKGBUILD (from rev 600544, haskell-ghc-typelits-extra/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-03-18 13:54:09 UTC (rev 600545) @@ -0,0 +1,48 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=ghc-typelits-extra +pkgname=haskell-ghc-typelits-extra +pkgver=0.3.3 +pkgrel=5 +pkgdesc="Additional type-level operations on GHC.TypeLits.Nat" +url="https://github.com/clash-lang/ghc-typelits-extra" +license=('custom:BSD2') +arch=('x86_64') +depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-tcplugins-extra' 'haskell-ghc-typelits-knownnat' + 'haskell-ghc-typelits-natnormalise') +makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('fc878c26e8eb8725df2afb6fee0809dff36cc36bcc834f67280d5527de73448940b9d5c251225ef8ff26562e2700707d3f1024b403d23f07c95758fb131a536b') + +prepare() { + cd $_hkgname-$pkgver + sed -i 's/>=.*0.7.2/>=0.7/' $_hkgname.cabal +} + +build() { + cd $_hkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ + --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 +} + +check() { + cd $_hkgname-$pkgver + runhaskell Setup test +} + +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 +}