wok-next view lxqt-themes/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lxqt-themes"
4 VERSION="0.12.0"
5 CATEGORY="customization"
6 SHORT_DESC="Themes, graphics and icons for LXQt"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/lxqt/lxqt-themes"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/lxde/lxqt-themes/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="cmake lxqt-build-tools"
16 compile_rules() {
17 mkdir build; cd build
18 cmake \
19 -DCMAKE_BUILD_TYPE=Release \
20 -DCMAKE_INSTALL_PREFIX=/usr \
21 .. &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 lxqt-themes)
29 copy @std
30 DEPENDS=" "
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 TAGS="LXQt"
37 }