wok view atk/receipt @ rev 2009

Up: pidgin (2.5.3)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 08 20:40:07 2009 +0100 (2009-01-08)
parents d103e8bbb768
children 7a436db659a4
line source
1 # SliTaz package receipt.
3 PACKAGE="atk"
4 VERSION="1.24.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Accessibility toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="cairo-dev glib-dev pango-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/atk/1.24/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --with-html-dir=/usr/share/doc \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib $fs/usr/share/locale
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }