wok-next view compton-conf/receipt @ rev 21725

busybox: add overrides
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:18:16 2020 +0000 (2020-09-01)
parents c0521c689857
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="compton-conf"
4 VERSION="0.3.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="GUI configuration tool for compton X composite manager"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/lxqt/compton-conf"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/lxde/compton-conf/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="cmake lxqt-build-tools mesa-dev libconfig-dev"
16 compile_rules() {
17 mkdir build
18 cd build
19 cmake \
20 -DCMAKE_BUILD_TYPE=Release \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 -DPULL_TRANSLATIONS=no \
23 .. &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="libconfig qt5-base compton"
31 TAGS="LXQt"
32 }