wok view expedite/receipt @ rev 24759

pkg-config: use autoconf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 18 08:01:47 2022 +0000 (2022-03-18)
parents 52fe2e3f497e
children 1be16cc1cd50
line source
1 # SliTaz package receipt.
3 PACKAGE="expedite"
4 VERSION="1.7.10"
5 CATEGORY="graphics"
6 TAGS="e enlightenment"
7 SHORT_DESC="Performance and correctness test suite for Evas."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="https://www.enlightenment.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://git.enlightenment.org/tools/$PACKAGE.git/snapshot/$TARBALL"
15 DEPENDS="evas python"
16 BUILD_DEPENDS="automake evas-dev libtool"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://git.enlightenment.org/tools/expedite.git/refs/ 2>/dev/null | \
22 sed '/expedite-/!d;/Release/!d;s| Release.*||;s|.*>||' | sort -Vr | sed q
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./autogen.sh &&
29 make $MAKEFLAGS &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs
37 cp -a $install/usr $fs
38 }