wok view atk/receipt @ rev 6260

Fix atk/gtk+ build loop i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Sep 14 11:56:40 2010 +0000 (2010-09-14)
parents 14be56f528eb
children 31b78de2a592
line source
1 # SliTaz package receipt.
3 PACKAGE="atk"
4 VERSION="1.30.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Accessibility toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glib"
9 BUILD_DEPENDS="glib-dev pkg-config perl"
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.30/$TARBALL"
13 TAGS="accessibility"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --with-html-dir=/usr/share/doc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }