wok-6.x annotate cppunit/receipt @ rev 19607
Up: sed (4.3)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Wed Jan 04 17:30:06 2017 +0000 (2017-01-04) |
parents | 02ae81877dfd |
children | b9c744416436 |
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 } |