wok-next annotate cppunit/receipt @ rev 15579
Remove cromfs-or-squashfs; add some licenses
| author | Pascal Bellard <pascal.bellard@slitaz.org> |
|---|---|
| date | Sat Nov 30 10:06:29 2013 +0000 (2013-11-30) |
| parents | 02ae81877dfd |
| children | 8f50006d2661 |
| rev | line source |
|---|---|
| pascal@11219 | 1 # SliTaz package receipt. |
| pascal@11219 | 2 |
| pascal@11219 | 3 PACKAGE="cppunit" |
| pascal@11219 | 4 VERSION="1.12.1" |
| pascal@11219 | 5 CATEGORY="system-tools" |
| pascal@11219 | 6 SHORT_DESC="A C++ unit testing framework." |
| pascal@11219 | 7 MAINTAINER="pankso@slitaz.org" |
| pascal@15579 | 8 LICENSE="LGPL2.1" |
| pascal@11219 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
| pascal@11219 | 10 WEB_SITE="http://cppunit.sourceforge.net/" |
| pascal@11219 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
| pascal@11219 | 12 |
| pascal@11219 | 13 # Rules to configure and make the package. |
| pascal@11219 | 14 compile_rules() |
| pascal@11219 | 15 { |
| pascal@11219 | 16 cd $src |
| pascal@11219 | 17 ./configure \ |
| pascal@11219 | 18 --prefix=/usr \ |
| pascal@11219 | 19 $CONFIGURE_ARGS && |
| pascal@11219 | 20 make && make install |
| pascal@11219 | 21 } |
| pascal@11219 | 22 |
| pascal@11219 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
| pascal@11219 | 24 genpkg_rules() |
| pascal@11219 | 25 { |
| pascal@11219 | 26 mkdir -p $fs/usr/lib |
| pascal@11219 | 27 cp -a $install/usr/lib/*.so* $fs/usr/lib |
| pascal@11219 | 28 } |