[arch-commits] Commit in haskell-placeholders/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Aug 30 18:46:43 UTC 2020
Date: Sunday, August 30, 2020 @ 18:46:43
Author: felixonmars
Revision: 692943
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-placeholders/repos/community-staging-x86_64/
haskell-placeholders/repos/community-staging-x86_64/PKGBUILD
(from rev 692942, haskell-placeholders/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: haskell-placeholders/repos/community-staging-x86_64/PKGBUILD (from rev 692942, haskell-placeholders/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-30 18:46:43 UTC (rev 692943)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=placeholders
+pkgname=haskell-placeholders
+pkgver=0.1
+pkgrel=19
+pkgdesc="Placeholders for use while developing Haskell code"
+url="https://github.com/ahammar/placeholders"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('29248b791853ab28e79238f454754ab8a87364c46387a2c026f5cad315bf26782924ff86516ad4948e7ed2ac8a9e1074dfbb8f8c73506ff66b93f2c8158599c9')
+
+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