[arch-commits] Commit in haskell-listlike/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Wed Dec 30 11:28:36 UTC 2020
Date: Wednesday, December 30, 2020 @ 11:28:35
Author: felixonmars
Revision: 798857
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-listlike/repos/community-staging-x86_64/
haskell-listlike/repos/community-staging-x86_64/PKGBUILD
(from rev 798856, haskell-listlike/trunk/PKGBUILD)
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: haskell-listlike/repos/community-staging-x86_64/PKGBUILD (from rev 798856, haskell-listlike/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-12-30 11:28:35 UTC (rev 798857)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=ListLike
+pkgname=haskell-listlike
+pkgver=4.7.2
+pkgrel=33
+pkgdesc="Generic support for list-like structures"
+url="https://github.com/ddssff/listlike"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-dlist' 'haskell-fmlist' 'haskell-utf8-string' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-random')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
+ ListLike-bytestring-0.10.12.patch::https://github.com/ddssff/listlike/commit/c6ef5ceca4fe94c002213f463ecb2f42f3572c58.patch)
+sha512sums=('bfb9c0bf805cb4cd43032263f52c015ac87829e90369035d9bccebc21d18434c608cc4202fd19b00c68e8c4b562bea1e344741327632d06081b625d0c8bac2df'
+ '0cbb80a80f539c75fc3903b4a41e1c53369371fb002a1eaab26a3e6629e682535637ee67b091953b235681538d44461dd8ee2d96aaa46c7e7396b06a69265b47')
+
+prepare() {
+ patch -d $_hkgname-$pkgver -p1 < ListLike-bytestring-0.10.12.patch
+}
+
+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 $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
+}
+
+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 "COPYRIGHT" "${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+ rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}
More information about the arch-commits
mailing list