diff options
Diffstat (limited to 'junit/Pkgfile')
-rw-r--r-- | junit/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/junit/Pkgfile b/junit/Pkgfile new file mode 100644 index 000000000..5af680dbd --- /dev/null +++ b/junit/Pkgfile @@ -0,0 +1,20 @@ +# Description: Contient un framework simple et libre pour écrire et exécuter des tâches répétitives +# URL: http://www.junit.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: +# Run on: + +name=junit +version=4.8.2 +release=2 +source=(https://github.com/downloads/KentBeck/junit/junit4.8.2.zip) + +build() { + cd $name$version + install -v -m755 -d $PKG/usr/share/{,doc/}junit-4.8 + chown -R root:root $PKG + cp -v -R junit* org $PKG/usr/share/junit-4.8 + cp -v -R *.html *doc $PKG/usr/share/doc/junit-4.8 +} + |