Date: Monday, January 2, 2023 @ 18:49:49
Author: felixonmars
Revision: 1373745
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-skylighting-core/repos/community-staging-x86_64/
haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 1373744, haskell-skylighting-core/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from
rev 1373744, haskell-skylighting-core/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-02 18:49:49 UTC (rev 1373745)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.13.1.2
+pkgrel=3
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec'
'haskell-base64-bytestring'
+ 'haskell-case-insensitive' 'haskell-colour' 'haskell-safe'
'haskell-utf8-string'
+ 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-diff' 'haskell-pretty-show' 'haskell-quickcheck'
'haskell-tasty'
+ 'haskell-tasty-golden' 'haskell-tasty-hunit'
'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5bcf9e7fae65ebba3a2664c64d1bc40c3c7ed75c8114091b48c5f86e2623205d9df68eade0a35536187ad7da9df18dd82da2a9bdfa8d32fbdacd82c2e8f67149')
+
+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 \
+ -fexecutable
+ 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
+}