[arch-commits] Commit in arbtt/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Mon Aug 29 23:48:25 UTC 2022


    Date: Monday, August 29, 2022 @ 23:48:24
  Author: felixonmars
Revision: 1287021

archrelease: copy trunk to community-staging-x86_64

Added:
  arbtt/repos/community-staging-x86_64/
  arbtt/repos/community-staging-x86_64/PKGBUILD
    (from rev 1287020, arbtt/trunk/PKGBUILD)

----------+
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

Copied: arbtt/repos/community-staging-x86_64/PKGBUILD (from rev 1287020, arbtt/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-08-29 23:48:24 UTC (rev 1287021)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=arbtt
+pkgver=0.12
+pkgrel=7
+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=$pkgname --datasubdir=haskell-arbtt --enable-tests \
+    --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+    --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+    --ghc-option='-pie' 
+
+  runhaskell Setup build $MAKEFLAGS
+}
+
+check() {
+  cd $pkgname-$pkgver
+  (
+    for _exe in arbtt-{dump,import,recover,stats}; do
+      PATH="$PWD/dist/build/$_exe:$PATH"
+    done
+    runhaskell Setup test --show-details=direct
+  )
+}
+
+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