wok annotate cppunit/receipt @ rev 19617

Up SliTaz projects: cookutils(863), slitaz-base-files(319), slitaz-boot-scripts(436), slitaz-configs(299), slitaz-tools(1008), ssfs(108), tazbug(94), tazinst(86), tazirc(18), tazlito(445), tazpanel(610), tazpkg(932), tazusb(194), tazweb(174).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 10 14:28:40 2017 +0200 (2017-01-10)
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 }