wok-next diff lxqt-build-tools/receipt @ rev 20348

ploticus (2.42)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 18 17:19:51 2017 +0100 (2017-11-18)
parents
children f48456621a9d
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lxqt-build-tools/receipt	Sat Nov 18 17:19:51 2017 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="lxqt-build-tools"
     1.7 +VERSION="0.4.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Various packaging tools and scripts for LXQt applications"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="LGPL2.1"
    1.12 +WEB_SITE="https://github.com/lxde/lxqt-build-tools"
    1.13 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/lxqt/lxqt-build-tools.html"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.16 +WGET_URL="https://github.com/lxde/lxqt-build-tools/releases/download/$VERSION/$TARBALL"
    1.17 +
    1.18 +BUILD_DEPENDS="cmake qt5-dev glib-dev"
    1.19 +
    1.20 +compile_rules() {
    1.21 +	mkdir build; cd build
    1.22 +	cmake \
    1.23 +		-DCMAKE_BUILD_TYPE=Release \
    1.24 +		-DCMAKE_INSTALL_PREFIX=/usr \
    1.25 +		.. &&
    1.26 +	make &&
    1.27 +	make install
    1.28 +}
    1.29 +
    1.30 +genpkg_rules() {
    1.31 +	copy @std @dev
    1.32 +	DEPENDS="cmake qt5-dev"
    1.33 +	TAGS="LXQt"
    1.34 +}