wok-next view grantlee/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="grantlee"
4 VERSION="5.1.0"
5 CATEGORY="libdevel"
6 SHORT_DESC="Libraries for text templating with Qt"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/steveire/grantlee"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/grantlee.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://downloads.grantlee.org/$TARBALL"
15 BUILD_DEPENDS="cmake qt5-dev mesa-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 mkdir build
20 cd build
22 cmake \
23 -DCMAKE_INSTALL_PREFIX=/usr \
24 -DCMAKE_BUILD_TYPE=Release \
25 .. &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 grantlee)
33 copy @std
34 DEPENDS="qt5-base qt5-script"
35 ;;
36 *-dev)
37 copy @dev
38 ;;
39 esac
40 }