wok view atk/receipt @ rev 5253

Removed firefox-simple-mail
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 12 18:58:00 2010 +0200 (2010-04-12)
parents 258772258cd2
children 14be56f528eb
line source
1 # SliTaz package receipt.
3 PACKAGE="atk"
4 VERSION="1.26.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.26/$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 $fs/usr/share/locale
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }