wok view atk/receipt @ rev 2803

Add:cdrkit-isoinfo for isoinfo utils
author Rohit Joshi <jozee@slitaz.org>
date Tue Apr 28 15:36:12 2009 +0000 (2009-04-28)
parents 4751fd396e9b
children 258772258cd2
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 DEPENDS="glib"
9 BUILD_DEPENDS="cairo-dev glib-dev pango-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/atk/1.24/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share/locale
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }