wok view expedite/receipt @ rev 25022

expedite: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 18 12:49:53 2022 +0000 (23 months ago)
parents 1be16cc1cd50
children
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.bz2"
13 WGET_URL="https://download.enlightenment.org/__old/att/releases/$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 ./configure -disable-doc $CONFIGURE_ARGS &&
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 }