blob: fa6295314c5eb09ccac6e442d673ca9c85316cfb (
plain)
1 # Description: Subunit is a streaming protocol for test results
2 # URL: https://launchpad.net/subunit
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: python check cppunit
5
6 name=subunit
7 version=1.0.0
8 release=1
9 source=(https://launchpad.net/subunit/trunk/$version/+download/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19
20 # Avoid conflict with p5-subunit and py-subunit
21 rm -rf $PKG/usr/lib/perl* $PKG/usr/lib/python*
22
23 # The binaries are actually python and perl scripts
24 rm -rf $PKG/usr/bin
25 }
|