wok view atk/receipt @ rev 10997

Up: tcl to 8.5.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 13 02:50:28 2011 +0000 (2011-10-13)
parents d7dd336b6153
children fd292e30db28
line source
1 # SliTaz package receipt.
3 PACKAGE="atk"
4 VERSION="2.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Accessibility toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glib"
9 BUILD_DEPENDS="libgio-dev glib-dev gobject-introspection-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:3}/$TARBALL"
13 TAGS="accessibility"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }