wok view at-spi2/receipt @ rev 24243

updated perl-net-ldap (0.66 -> 0.68)
author Hans-G?nter Theisgen
date Sun Jan 02 07:34:22 2022 +0100 (2022-01-02)
parents 86790a278e70
children
line source
1 # SliTaz package receipt.
3 PACKAGE="at-spi2"
4 VERSION="2.15.4"
5 CATEGORY="libdevel"
6 LICENSE="GPL3"
7 SHORT_DESC="Bridges ATK to At-Spi2 D-Bus service."
8 MAINTAINER="yuripourre@gmail.com"
9 SOURCE="at-spi2-core"
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="https://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$SOURCE/${VERSION%.*}/$TARBALL"
14 DEPENDS="dbus glib gobject-introspection util-linux-uuid"
15 BUILD_DEPENDS="dbus-dev glib-dev gobject-introspection-dev util-linux-uuid-dev"
17 current_version()
18 {
19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
20 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }