wok view libart_lgpl/receipt @ rev 24733

updated libedit and libedit-dev (3.1-20191231 -> 3.1-20210910)
author Hans-G?nter Theisgen
date Tue Mar 15 17:44:35 2022 +0100 (2022-03-15)
parents 4904e3d374a9
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libart_lgpl"
4 VERSION="2.3.21"
5 CATEGORY="x-window"
6 SHORT_DESC="Free libart."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="glibc-base"
15 current_version()
16 {
17 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
18 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
19 }
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure --prefix=/usr --infodir=/usr/share/info \
26 --mandir=/usr/share/man $CONFIGURE_ARGS
27 make
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }