blob: 7c17669d346616d89909ef43a8cbcd2dffe55a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
}
|