summaryrefslogtreecommitdiff
path: root/libre-testing/sh-roundup/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@parabola.nu>2013-06-03 11:41:39 -0300
committerNicolás Reynolds <fauno@parabola.nu>2013-06-03 11:41:39 -0300
commite175a6a319b5392f499b6f679f89f8346d8dd799 (patch)
treeaa84ee61b39ef860b4169e81369c545a9a732658 /libre-testing/sh-roundup/PKGBUILD
parent6370ae5c715a94a0390b77d10adb6e8ee3b39ef9 (diff)
parent8bc9d00dfcde0f3b844917713b3d31749ce51b50 (diff)
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre-testing/sh-roundup/PKGBUILD')
-rw-r--r--libre-testing/sh-roundup/PKGBUILD44
1 files changed, 44 insertions, 0 deletions
diff --git a/libre-testing/sh-roundup/PKGBUILD b/libre-testing/sh-roundup/PKGBUILD
new file mode 100644
index 000000000..7c17669d3
--- /dev/null
+++ b/libre-testing/sh-roundup/PKGBUILD
@@ -0,0 +1,44 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net
+
+pkgname=sh-roundup
+pkgver=0.0.5.git17
+_gitver='commit=695ae7609353a360556e1f465ac81ce447235179'
+
+pkgdesc='A unit testing framework for POSIX shell'
+license=("custom:MIT")
+url="http://bmizerany.github.io/roundup/"
+
+pkgrel=1
+arch=('any')
+depends=(sh)
+makedepends=(ronn)
+
+source=("libre://$pkgname-$pkgver.tar.gz" 'makefile-fix.patch')
+md5sums=('8b1f85316d178eb9e809e168f52d0f2d'
+ '9efcd83d666c1e84302fe611610c60fa')
+
+mksource=("git://github.com/bmizerany/roundup.git#${_gitver}")
+mkmd5sums=('SKIP')
+mksource() {
+ cd "$srcdir"
+ rm -rf $pkgname-*
+ mv roundup $pkgname-$pkgver
+}
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ patch -i ../makefile-fix.patch Makefile
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix="$pkgdir"/usr
+ make -j1 build man
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make -j1 install install-man
+ install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+