wok annotate lxqt-about/receipt @ rev 24106

updated actionmailer, actionpack, activerecord and activesupport (6.0.2.1 -> 6.1.4.1)
author Hans-G?nter Theisgen
date Sat Sep 25 17:38:40 2021 +0100 (2021-09-25)
parents c0ce132ba4ee
children 7364ffdaaa60
rev   line source
al@16833 1 # SliTaz package receipt.
al@16833 2
al@16833 3 PACKAGE="lxqt-about"
psychomaniak@17239 4 VERSION="0.8.0"
al@17516 5 CATEGORY="system-tools"
al@16833 6 SHORT_DESC="The standalone LXQt \"About\" dialog"
al@16833 7 MAINTAINER="al.bobylev@gmail.com"
al@16833 8 LICENSE="LGPL2.1"
al@16833 9 WEB_SITE="https://github.com/lxde/lxqt-about"
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 liblxqt"
al@16833 15 BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep libqtxdg-dev"
al@16833 16
pascal@24055 17 current_version()
pascal@24055 18 {
pascal@24055 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 21 }
pascal@24055 22
al@16833 23 # Rules to configure and make the package.
al@16833 24 compile_rules()
al@16833 25 {
al@16833 26 mkdir build; cd build
al@16833 27 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@16833 28 make &&
al@16833 29 make DESTDIR=$install install
al@16833 30 }
al@16833 31
al@16833 32 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16833 33 genpkg_rules()
al@16833 34 {
al@16833 35 cp -a $install/* $fs
al@16833 36 }