wok-next annotate cppunit/receipt @ rev 19661

Updating some build dependencies...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 10 14:31:18 2017 +0200 (2017-03-10)
parents eb8067417980
children 0f38eda21e70
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
al@19661 13 BUILD_DEPENDS="gfortran doxygen coreutils-path"
al@19661 14
pascal@11219 15 # Rules to configure and make the package.
pascal@11219 16 compile_rules()
pascal@11219 17 {
pascal@11219 18 cd $src
pascal@11219 19 ./configure \
pascal@11219 20 --prefix=/usr \
pascal@11219 21 $CONFIGURE_ARGS &&
pascal@11219 22 make && make install
pascal@11219 23 }
pascal@11219 24
pascal@11219 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11219 26 genpkg_rules()
pascal@11219 27 {
pascal@11219 28 mkdir -p $fs/usr/lib
pascal@11219 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11219 30 }