wok-next view lxqt-connman-applet/receipt @ rev 20502

Swap: current mesa (which is developing and change it's version) is just mesa, while old mesa is mesa12 now (will be removed if no one old package require it).
Also, change long names to its origins: libglu-mesa -> glu, libglw-mesa -> glw, all variations with libegl -> mesa-libegl (because it is part of mesa package).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 16 00:27:34 2018 +0200 (2018-03-16)
parents e6d548803bb4
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lxqt-connman-applet"
4 VERSION="0.0.91" # not released yet, it's commit #91
5 COMMIT="fbca14a"
6 CATEGORY="system-tools"
7 SHORT_DESC="System-tray applet for connman"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL2.1"
10 WEB_SITE="https://github.com/lxde/lxqt-connman-applet"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/lxde/lxqt-connman-applet/archive/${COMMIT:-$VERSION}.tar.gz"
15 BUILD_DEPENDS="cmake liblxqt-dev mesa-dev kwindowsystem-dev lxqt-build-tools"
16 SPLIT="lxqt-connman-applet-dev"
18 compile_rules() {
19 mkdir build; cd build
20 cmake \
21 -DCMAKE_BUILD_TYPE=Release \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 .. &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 lxqt-connman-applet)
31 copy @std
32 DEPENDS="kwindowsystem liblxqt libqtxdg qt5-base qt5-svg \
33 qt5-x11extras"
34 ;;
35 *-dev)
36 copy @dev
37 ;;
38 esac
39 TAGS="LXQt"
40 }