[arch-commits] Commit in arbtt/repos (community-x86_64 community-x86_64/PKGBUILD)
Felix Yan
felixonmars at gemini.archlinux.org
Sat Aug 20 17:30:07 UTC 2022
Date: Saturday, August 20, 2022 @ 17:30:06
Author: felixonmars
Revision: 1271101
archrelease: copy trunk to community-x86_64
Added:
arbtt/repos/community-x86_64/
arbtt/repos/community-x86_64/PKGBUILD
(from rev 1271100, arbtt/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: arbtt/repos/community-x86_64/PKGBUILD (from rev 1271100, arbtt/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2022-08-20 17:30:06 UTC (rev 1271101)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=arbtt
+pkgver=0.12
+pkgrel=1
+pkgdesc="Automatic Rule-Based Time Tracker"
+url="http://arbtt.nomeata.de/"
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-x11' 'haskell-aeson' 'haskell-attoparsec' 'haskell-bytestring-progress'
+ 'haskell-conduit' 'haskell-pcre-light' 'haskell-resourcet' 'haskell-strict'
+ 'haskell-terminal-progress-bar' 'haskell-tz' 'haskell-unliftio-core' 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-process-extras' 'haskell-tasty' 'haskell-tasty-golden'
+ 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('681f6dafdec3830eed07f19193590e7f67d81a322ad0632ffc28dfc5fc9aaf2a')
+
+build() {
+ cd $pkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=haskell-arbtt --enable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+ --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+ --ghc-option='-pie'
+
+ runhaskell Setup build
+}
+
+check() {
+ cd $pkgname-$pkgver
+ (
+ for _exe in arbtt-{dump,import,recover,stats}; do
+ PATH="$PWD/dist/build/$_exe:$PATH"
+ done
+ runhaskell Setup test
+ )
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ runhaskell Setup copy --destdir="$pkgdir"
+ install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list