Date: Monday, September 20, 2021 @ 04:37:21 Author: felixonmars Revision: 1018325
archrelease: copy trunk to community-staging-x86_64 Added: haskell-postgresql-simple/repos/community-staging-x86_64/ haskell-postgresql-simple/repos/community-staging-x86_64/PKGBUILD (from rev 1018324, haskell-postgresql-simple/trunk/PKGBUILD) ----------+ PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) Copied: haskell-postgresql-simple/repos/community-staging-x86_64/PKGBUILD (from rev 1018324, haskell-postgresql-simple/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-09-20 04:37:21 UTC (rev 1018325) @@ -0,0 +1,54 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=postgresql-simple +pkgname=haskell-postgresql-simple +pkgver=0.6.4 +pkgrel=33 +pkgdesc="Mid-Level PostgreSQL client library" +url="http://github.com/haskellari/postgresql-simple" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-only' 'haskell-aeson' 'haskell-attoparsec' 'haskell-case-insensitive' + 'haskell-hashable' 'haskell-postgresql-libpq' 'haskell-scientific' 'haskell-time-compat' + 'haskell-uuid-types' 'haskell-vector') +makedepends=('ghc' 'uusi' 'haskell-hunit' 'haskell-base16-bytestring' 'haskell-cryptohash-md5' + 'haskell-inspection-testing' 'haskell-tasty' 'haskell-tasty-golden' + 'haskell-tasty-hunit') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('6d90394203ea3aa27cae4492569ab14bf175cd2d30112e565ffb92dbe95ce267') + +prepare() { + cd $_hkgname-$pkgver + uusi -u attoparsec -u base -u template-haskell -d bytestring-builder $_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 \ + --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 +}