Date: Friday, March 10, 2023 @ 19:03:34 Author: felixonmars Revision: 1417608
archrelease: copy trunk to community-staging-x86_64 Added: haskell-coinbase-pro/repos/community-staging-x86_64/ haskell-coinbase-pro/repos/community-staging-x86_64/PKGBUILD (from rev 1417607, haskell-coinbase-pro/trunk/PKGBUILD) ----------+ PKGBUILD | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) Copied: haskell-coinbase-pro/repos/community-staging-x86_64/PKGBUILD (from rev 1417607, haskell-coinbase-pro/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2023-03-10 19:03:34 UTC (rev 1417608) @@ -0,0 +1,56 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=coinbase-pro +pkgname=haskell-coinbase-pro +pkgver=0.9.3.2 +pkgrel=25 +pkgdesc="Client for Coinbase Pro" +url="https://github.com/mdunnio/coinbase-pro#readme" +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' 'haskell-hsopenssl' 'haskell-aeson' 'haskell-aeson-casing' 'haskell-async' + 'haskell-cryptonite' 'haskell-http-api-data' 'haskell-http-client' + 'haskell-http-client-tls' 'haskell-http-streams' 'haskell-http-types' 'haskell-io-streams' + 'haskell-memory' 'haskell-network' 'haskell-servant' 'haskell-servant-client' + 'haskell-servant-client-core' 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-unagi-streams' + 'haskell-unordered-containers' 'haskell-uuid' 'haskell-vector' 'haskell-websockets' + 'haskell-wuss') +makedepends=('ghc' 'uusi') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('da7462aad8d3f7436a9e1d92f696c47720c4d6ac73b84af7ff4db73a99f5ff19') + +prepare() { + cd $_hkgname-$pkgver + uusi -u aeson -u http-api-data -u vector $_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 --datasubdir=$pkgname --enable-tests \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \ + --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + 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 --show-details=direct +} + +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 -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}