summaryrefslogtreecommitdiff
path: root/subunit/Pkgfile
blob: 104a3d8c7babbb14be4edcdf63751d3a578982f7 (plain)
    1 # Description:	Python unit testing library
    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.2.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 }

Generated by cgit