summaryrefslogtreecommitdiff
path: root/libre/sh-roundup
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-09-01 14:26:49 -0500
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-22 16:14:59 -0300
commit1ca9bdaeadb540e82bc2365e172c2debfa17b988 (patch)
tree4000f78942c86e43cb9ba662d3b48705612b4a26 /libre/sh-roundup
parent5c1850310f1b478410b7314265a2c3bda297486c (diff)
sh-roundup-0.0.6-1: updating version
Diffstat (limited to 'libre/sh-roundup')
-rw-r--r--libre/sh-roundup/PKGBUILD30
1 files changed, 13 insertions, 17 deletions
diff --git a/libre/sh-roundup/PKGBUILD b/libre/sh-roundup/PKGBUILD
index 10fdff645..cc614c0d9 100644
--- a/libre/sh-roundup/PKGBUILD
+++ b/libre/sh-roundup/PKGBUILD
@@ -1,39 +1,35 @@
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+# Contributor: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=sh-roundup
-pkgver=0.0.5.git17
-_gitver='commit=695ae7609353a360556e1f465ac81ce447235179'
-
+_pkgname="roundup"
+pkgver=0.0.6
+pkgrel=1
pkgdesc='A unit testing framework for POSIX shell'
-license=("custom:MIT")
-url="http://bmizerany.github.io/roundup/"
-
-pkgrel=2
arch=('any')
+url="http://bmizerany.github.io/roundup/"
+license=("custom:MIT")
depends=(sh)
-makedepends=(ronn)
+makedepends=(ruby-ronn)
-source=("https://repo.parabola.nu/other/$pkgname/$pkgname-$pkgver.tar.gz" 'makefile-fix.patch')
-md5sums=('053754e0a450288710bde0b9e5deb67e'
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bmizerany/$_pkgname/archive/v$pkgver.tar.gz"
+ 'makefile-fix.patch')
+md5sums=('607023b4fe4e42fdc2f0cb14b4138b2e'
'9efcd83d666c1e84302fe611610c60fa')
-mksource=("$pkgname-$pkgver::git://github.com/bmizerany/roundup.git#${_gitver}")
-mkmd5sums=('SKIP')
-
prepare() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$_pkgname-$pkgver"
patch -i ../makefile-fix.patch Makefile
}
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$_pkgname-$pkgver"
./configure --prefix="$pkgdir"/usr
make -j1 build man
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$_pkgname-$pkgver"
make -j1 install install-man
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
-