wok view fluxcomp/receipt @ rev 24334

polkit: CVE-2021-4034
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 28 11:07:11 2022 +0000 (2022-01-28)
parents 5ea0ce1cecc0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fluxcomp"
4 VERSION="1.4.4"
5 CATEGORY="development"
6 SHORT_DESC="Interface description language used by DirectFB"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/Distrotech/flux"
11 TARBALL="distrotech-flux-$VERSION.tar.gz"
12 WGET_URL="https://github.com/Distrotech/flux/archive/$TARBALL"
14 current_version()
15 {
16 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
17 sed '/archive.*tar/!d;s|.*/distrotech-flux-\(.*\).tar.*|\1|;q'
18 }
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 # fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $install/usr/bin/* $fs/usr/bin
32 }