wok-current annotate evas_generic_loaders/receipt @ rev 24619
updated gptfdisk (1.0.5 -> 1.0.8)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 07 10:40:58 2022 +0100 (2022-03-07) |
parents | 86790a278e70 |
children | 1be16cc1cd50 |
rev | line source |
---|---|
domcox@14398 | 1 # SliTaz package receipt. |
domcox@14398 | 2 |
domcox@14398 | 3 PACKAGE="evas_generic_loaders" |
domcox@15438 | 4 VERSION="1.7.9" |
domcox@14398 | 5 CATEGORY="base-system" |
domcox@14398 | 6 SHORT_DESC="Loaders for Evas using 'generic' module" |
domcox@14398 | 7 MAINTAINER="domcox@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
domcox@14398 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@20421 | 10 WEB_SITE="https://www.enlightenment.org/" |
domcox@14598 | 11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL" |
domcox@14398 | 12 TAGS="e enlightenment efl python" |
domcox@14398 | 13 |
domcox@14398 | 14 DEPENDS="evas gstreamer gst-plugins-base poppler librsvg libraw" |
domcox@14598 | 15 BUILD_DEPENDS="evas-dev gstreamer-dev gst-plugins-base-dev poppler-dev |
domcox@14598 | 16 librsvg-dev libraw-dev |
domcox@14398 | 17 autoconf automake git subversion libtool" |
domcox@14398 | 18 |
pascal@24491 | 19 # What is the latest version available today? |
pascal@24491 | 20 current_version() |
pascal@24491 | 21 { |
pascal@24491 | 22 wget -O - https://download.enlightenment.org/rel/libs/evas_generic_loaders/ 2>/dev/null | \ |
pascal@24491 | 23 sed "/latest/d;/$PACKAGE-[0-9]/!d;/[^a-z][0-9].tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q |
pascal@24491 | 24 } |
pascal@24491 | 25 |
domcox@14398 | 26 # Rules to configure and make the package. |
domcox@14398 | 27 compile_rules() |
domcox@14398 | 28 { |
psychomaniak@18210 | 29 sed '/Anti/d' -i src/bin/pdf/main.cpp |
domcox@14598 | 30 ./configure $CONFIGURE_ARGS && |
domcox@14598 | 31 make $MAKEFLAGS all && make install |
domcox@14398 | 32 } |
domcox@14398 | 33 |
domcox@14398 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@14398 | 35 genpkg_rules() |
domcox@14398 | 36 { |
domcox@14398 | 37 mkdir -p $fs/usr/lib |
domcox@14398 | 38 cp -a $install/usr/lib/evas $fs/usr/lib |
domcox@14398 | 39 } |
psychomaniak@18209 | 40 |