wok annotate lxqt-policykit/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents c0ce132ba4ee
children 7364ffdaaa60
rev   line source
al@16833 1 # SliTaz package receipt.
al@16833 2
al@16833 3 PACKAGE="lxqt-policykit"
psychomaniak@17239 4 VERSION="0.8.0"
al@17516 5 CATEGORY="system-tools"
al@16833 6 SHORT_DESC="The LXQt PolicyKit agent"
al@16833 7 MAINTAINER="al.bobylev@gmail.com"
al@16833 8 LICENSE="LGPL2.1"
al@16833 9 WEB_SITE="https://github.com/lxde/lxqt-policykit"
al@16833 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@16833 11 WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz"
al@16833 12 TAGS="LXQt"
al@16833 13
al@16833 14 DEPENDS="libQtCore libQtGui libffi libgio liblxqt libqtxdg pcre polkit \
al@16833 15 polkit-qt zlib"
al@16833 16 BUILD_DEPENDS="wget cacerts cmake polkit-qt-dev liblxqt-dev polkit-dev Qt4-dev \
al@16833 17 qmake libqtxdg-dev"
al@16833 18
pascal@24055 19 current_version()
pascal@24055 20 {
pascal@24055 21 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 22 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 23 }
pascal@24055 24
al@16833 25 # Rules to configure and make the package.
al@16833 26 compile_rules()
al@16833 27 {
al@16833 28 mkdir build; cd build
al@16833 29 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@16833 30 make &&
al@16833 31 make DESTDIR=$install install
al@16833 32 }
al@16833 33
al@16833 34 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16833 35 genpkg_rules()
al@16833 36 {
al@16833 37 cp -a $install/* $fs
al@16833 38 }