wok annotate lxqt-runner/receipt @ rev 25705

fusecloop/extract_compressed_fs: can convert to v0.68 or v1.0
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 22 12:48:49 2024 +0000 (5 days ago)
parents 5ea0ce1cecc0
children
rev   line source
al@16833 1 # SliTaz package receipt.
al@16833 2
al@16833 3 PACKAGE="lxqt-runner"
psychomaniak@17239 4 VERSION="0.8.0"
al@17516 5 CATEGORY="system-tools"
al@16833 6 SHORT_DESC="Tool used to launch programs quickly by typing their names"
al@16833 7 MAINTAINER="al.bobylev@gmail.com"
al@16833 8 LICENSE="LGPL2.1"
al@16833 9 WEB_SITE="https://github.com/lxde/lxqt-runner"
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 libQtDBus libQtGui libQtScript libQtXml libqtxdg liblxqt \
al@16833 15 lxqt-globalkeys menu-cache pcre"
al@16833 16 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev \
al@16833 17 lxqt-globalkeys-dev menu-cache-dev xorg-libX11-dev"
al@16833 18
pascal@25600 19 # What is the latest version available today?
pascal@24055 20 current_version()
pascal@24055 21 {
pascal@24055 22 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@25600 23 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24055 24 }
pascal@24055 25
al@16833 26 # Rules to configure and make the package.
al@16833 27 compile_rules()
al@16833 28 {
al@16833 29 mkdir build; cd build
al@16833 30 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@16833 31 make &&
al@16833 32 make DESTDIR=$install install
al@16833 33 }
al@16833 34
al@16833 35 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16833 36 genpkg_rules()
al@16833 37 {
al@16833 38 mkdir -p $fs/usr
al@16833 39 cp -a $install/usr/bin $fs/usr
al@16833 40 }