wok-6.x annotate cppunit/receipt @ rev 23188
updated motion (4.2.2 -> 4.3.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 20 08:50:20 2020 +0100 (2020-03-20) |
parents | eb8067417980 |
children | 2a0479881723 |
rev | line source |
---|---|
pascal@11219 | 1 # SliTaz package receipt. |
pascal@11219 | 2 |
pascal@11219 | 3 PACKAGE="cppunit" |
Hans-G?nter@22617 | 4 VERSION="1.15.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" |
Hans-G?nter@22617 | 9 WEB_SITE="https://freedesktop.org/wiki/Software/cppunit/" |
Hans-G?nter@22617 | 10 |
pascal@11219 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22617 | 12 WGET_URL="https://dev-www.libreoffice.org/src/$TARBALL" |
Hans-G?nter@22617 | 13 |
Hans-G?nter@22617 | 14 DEPENDS="gcc83-lib-base" |
Hans-G?nter@22617 | 15 BUILD_DEPENDS="gcc83" |
pascal@11219 | 16 |
pascal@11219 | 17 # Rules to configure and make the package. |
pascal@11219 | 18 compile_rules() |
pascal@11219 | 19 { |
Hans-G?nter@22617 | 20 ./configure \ |
Hans-G?nter@22617 | 21 CC=gcc-83 \ |
Hans-G?nter@22617 | 22 CXX=g++-83 \ |
Hans-G?nter@22617 | 23 --prefix=/usr \ |
pascal@11219 | 24 $CONFIGURE_ARGS && |
Hans-G?nter@22617 | 25 make && |
Hans-G?nter@22617 | 26 make install |
pascal@11219 | 27 } |
pascal@11219 | 28 |
pascal@11219 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11219 | 30 genpkg_rules() |
pascal@11219 | 31 { |
pascal@11219 | 32 mkdir -p $fs/usr/lib |
Hans-G?nter@22617 | 33 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@11219 | 34 } |