[arch-commits] Commit in haskell-conversion/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Wed Dec 23 22:09:42 UTC 2020
Date: Wednesday, December 23, 2020 @ 22:09:42
Author: felixonmars
Revision: 785462
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-conversion/repos/community-staging-x86_64/
haskell-conversion/repos/community-staging-x86_64/PKGBUILD
(from rev 785461, haskell-conversion/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: haskell-conversion/repos/community-staging-x86_64/PKGBUILD (from rev 785461, haskell-conversion/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-12-23 22:09:42 UTC (rev 785462)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=conversion
+pkgname=haskell-conversion
+pkgver=1.2.1
+pkgrel=16
+pkgdesc="Universal converter between values of different types"
+url="https://github.com/nikita-volkov/conversion"
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('f4cc84d1d1bba63b0191d2c98caa14d67ff6601eb2a0d95aebf88116e80adefe84d7e1fc3530146efa5b67170c7311afdaf811a093278891ade13483aaa3f6eb')
+
+build() {
+ cd $_hkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+ --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
+}
+
+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