wok-next annotate lxqt-build-tools/receipt @ rev 21017

Some maintenance
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 16 16:46:05 2018 +0300 (2018-10-16)
parents 4c3ee4d2d357
children d457c4e37c1b
rev   line source
al@19989 1 # SliTaz package receipt v2.
al@19989 2
al@19989 3 PACKAGE="lxqt-build-tools"
al@19989 4 VERSION="0.4.0"
al@19989 5 CATEGORY="development"
al@19989 6 SHORT_DESC="Various packaging tools and scripts for LXQt applications"
al@19989 7 MAINTAINER="al.bobylev@gmail.com"
al@19989 8 LICENSE="LGPL2.1"
al@19989 9 WEB_SITE="https://github.com/lxde/lxqt-build-tools"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/lxqt/lxqt-build-tools.html"
al@19989 11
al@19989 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19989 13 WGET_URL="https://github.com/lxde/lxqt-build-tools/releases/download/$VERSION/$TARBALL"
al@19989 14
al@19989 15 BUILD_DEPENDS="cmake qt5-dev glib-dev"
al@19989 16
al@19989 17 compile_rules() {
al@19989 18 mkdir build; cd build
al@19989 19 cmake \
al@19989 20 -DCMAKE_BUILD_TYPE=Release \
al@19989 21 -DCMAKE_INSTALL_PREFIX=/usr \
al@19989 22 .. &&
al@19989 23 make &&
al@19989 24 make install
al@19989 25 }
al@19989 26
al@19989 27 genpkg_rules() {
al@19989 28 copy @std @dev
al@19989 29 DEPENDS="cmake qt5-dev"
al@19989 30 TAGS="LXQt"
al@19989 31 }