Date: Wednesday, April 5, 2023 @ 05:47:03
Author: felixonmars
Revision: 1435847
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-text-show/repos/community-staging-x86_64/
haskell-text-show/repos/community-staging-x86_64/PKGBUILD
(from rev 1435846, haskell-text-show/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: haskell-text-show/repos/community-staging-x86_64/PKGBUILD (from rev
1435846, haskell-text-show/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-05 05:47:03 UTC (rev 1435847)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=text-show
+pkgname=haskell-text-show
+pkgver=3.10.1
+pkgrel=7
+pkgdesc="Efficient conversion of values into Text"
+url="https://github.com/RyanGlScott/text-show"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat-batteries' 'haskell-bifunctors'
'haskell-generic-deriving'
+ 'haskell-th-abstraction' 'haskell-th-lift'
'haskell-transformers-compat')
+makedepends=('ghc' 'uusi' 'haskell-base-orphans' 'haskell-deriving-compat'
'haskell-hspec'
+ 'haskell-quickcheck' 'haskell-quickcheck-instances')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('83f88880af81028b60e2c9e9ec778a02c68c039d946769039ebc5d4ce3696e86bbc4fd7e7693ff4e223b826517e44d77f41a0f5076652726f0bb1ce23377ae51')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ uusi -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 --datasubdir=$pkgname
--enable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
--ghc-option=-fllvm
+ 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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}