summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Weidenbaum2016-05-10 02:41:38 -0700
committerAndy Weidenbaum2016-05-10 02:41:38 -0700
commitd6d26b990417ae30d9f7b9e92a28f34782967416 (patch)
treeac007f956f021bcd040d3457da120c55b87c3237
parent997d62cd9f8524e973ad0b4189de7a008de46584 (diff)
downloadaur-d6d26b990417ae30d9f7b9e92a28f34782967416.tar.gz
increment pkgrel to 2; source+=txn-examples
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
2 files changed, 9 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 20c696ec89b9..0faf9c2a9c0d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Fri Apr 29 21:04:05 UTC 2016
+# Tue May 10 09:40:22 UTC 2016
pkgbase = mktxn
pkgdesc = Double-entry bookkeeping transaction journal parser and serializer
pkgver = 0.0.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/atweiden/mktxn
arch = any
groups = perl6
@@ -17,6 +17,8 @@ pkgbase = mktxn
depends = perl6-json-tiny
depends = perl6-txn-parser
source = mktxn-0.0.2::git+https://github.com/atweiden/mktxn
+ source = git+https://github.com/atweiden/txn-examples
+ sha256sums = SKIP
sha256sums = SKIP
pkgname = mktxn
diff --git a/PKGBUILD b/PKGBUILD
index cacbb4ce6997..99cb99afd5a2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=mktxn
pkgver=0.0.2
-pkgrel=1
+pkgrel=2
pkgdesc="Double-entry bookkeeping transaction journal parser and serializer"
arch=('any')
depends=('perl6'
@@ -14,13 +14,15 @@ makedepends=('alacryd' 'git')
groups=('perl6' 'nightscape')
url="https://github.com/atweiden/mktxn"
license=('UNLICENSE')
-source=($pkgname-$pkgver::git+https://github.com/atweiden/mktxn)
-sha256sums=('SKIP')
+source=($pkgname-$pkgver::git+https://github.com/atweiden/mktxn
+ git+https://github.com/atweiden/txn-examples)
+sha256sums=('SKIP' 'SKIP')
check() {
cd "$srcdir/$pkgname-$pkgver"
msg2 'Running tests...'
+ cp -dpr --no-preserve=ownership "$srcdir/txn-examples" t/data
PERL6LIB=lib prove -r -e perl6
}