wok view gtest/receipt @ rev 19917

gimp, hplip: update dependencies (thanks andreid)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 15 16:01:44 2017 +0300 (2017-04-15)
parents
children 8dd8bab3f0ca
line source
1 # SliTaz package receipt.
3 PACKAGE="gtest"
4 VERSION="1.7.0"
5 CATEGORY="development"
6 SHORT_DESC="Google's framework for writing C++ tests."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.zip"
10 WEB_SITE="http://code.google.com/p/googletest/"
11 WGET_URL="http://googletest.googlecode.com/files/$TARBALL"
13 BUILD_DEPENDS="cmake"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir build && cd build
19 cmake -DCMAKE_INSTALL_PREFIX=/usr ..
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $src/include $fs/usr
28 cp -a $src/build/*a $fs/usr/lib
29 }