[arch-commits] Commit in haskell-emojis/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Sat Jan 29 18:16:36 UTC 2022
Date: Saturday, January 29, 2022 @ 18:16:36
Author: felixonmars
Revision: 1119861
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-emojis/repos/community-staging-x86_64/
haskell-emojis/repos/community-staging-x86_64/PKGBUILD
(from rev 1119860, haskell-emojis/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: haskell-emojis/repos/community-staging-x86_64/PKGBUILD (from rev 1119860, haskell-emojis/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-01-29 18:16:36 UTC (rev 1119861)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=emojis
+pkgname=haskell-emojis
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="Conversion between emoji characters and their names"
+url="https://github.com/jgm/emojis"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0dea4f95d3bec42104ba2b89409ee7e8f03ff385e8f477f0c94cfc5e6d8af3320743fc1940c3c02b8936b2cec6a92fbe063b488883fcbaf1e842b0e8a1d5d995')
+
+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 --ghc-option=-fllvm
+ 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
+}
More information about the arch-commits
mailing list