[arch-commits] Commit in haskell-these/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Aug 1 00:03:01 UTC 2020
Date: Saturday, August 1, 2020 @ 00:03:00
Author: felixonmars
Revision: 666813
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-these/repos/community-staging-x86_64/
haskell-these/repos/community-staging-x86_64/PKGBUILD
(from rev 666812, haskell-these/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: haskell-these/repos/community-staging-x86_64/PKGBUILD (from rev 666812, haskell-these/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-01 00:03:00 UTC (rev 666813)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=these
+pkgname=haskell-these
+pkgver=1.1
+pkgrel=5
+pkgdesc="An either-or-both data type"
+url="https://github.com/isomorphism/these"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-assoc' 'haskell-base-compat' 'haskell-hashable')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3a34257e5a0cbd7a59317435ef401970b6723bbaa699d0edb6a0a8252a01a390274669da916d4956d63c4184a1e0562e371b10dee46a7d4e59787fda0c2ec8f0')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+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 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list