wok annotate lxqt-globalkeys/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents c0ce132ba4ee
children 7364ffdaaa60
rev   line source
al@16833 1 # SliTaz package receipt.
al@16833 2
al@16833 3 PACKAGE="lxqt-globalkeys"
al@17221 4 VERSION="0.8.0"
al@17516 5 CATEGORY="system-tools"
al@16833 6 SHORT_DESC="Daemon used to register global keyboard shortcuts"
al@16833 7 MAINTAINER="al.bobylev@gmail.com"
al@16833 8 LICENSE="LGPL2.1"
al@16833 9 WEB_SITE="https://github.com/lxde/lxqt-globalkeys"
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="liblxqt libQtCore libQtDBus libQtGui libQtXml xorg-libX11 xorg-libXext"
al@16833 15 BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep xorg-xproto \
al@17221 16 xorg-libX11-dev liblxqt-dev libqtxdg-dev libQtMimeTypes-dev sdft"
al@16833 17
pascal@24055 18 current_version()
pascal@24055 19 {
pascal@24055 20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 21 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 22 }
pascal@24055 23
al@16833 24 # Rules to configure and make the package.
al@16833 25 compile_rules()
al@16833 26 {
al@16833 27 mkdir build; cd build
al@16833 28 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@16833 29 make &&
al@16833 30 make DESTDIR=$install install
al@17221 31
al@17221 32 # FIXME UPSTREAM: fix .desktop translations
al@17221 33 sdft $install/usr/share/applications/lxqt-config-globalkeyshortcuts.desktop \
al@17221 34 -i -r "Name[ru_RU]" \
al@17221 35 -s "Name[ru]=Настройка глобальных сочетаний клавиш LXQt"
al@16833 36 }
al@16833 37
al@16833 38 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16833 39 genpkg_rules()
al@16833 40 {
al@16833 41 mkdir -p $fs/usr/lib $fs/usr/share
al@16833 42 cp -a $install/usr/bin $fs/usr
al@16833 43 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@16833 44 cp -a $install/usr/share/applications $fs/usr/share
al@16833 45 }