wok view cppunit/receipt @ rev 12281

Add razor-qt (Light, fast QT based Desktop Environment)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 15 14:00:30 2012 +0200 (2012-04-15)
parents
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="cppunit"
4 VERSION="1.12.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A C++ unit testing framework."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://cppunit.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 $CONFIGURE_ARGS &&
19 make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }