wok view atk/receipt @ rev 67

Flex: add symlink /usr/bin/lex
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 24 13:20:13 2007 +0100 (2007-12-24)
parents
children d103e8bbb768
line source
1 # SliTaz package receipt.
3 PACKAGE="atk"
4 VERSION="1.12.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Accessibility toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnome.org/"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/atk/1.12/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --mandir=/usr/share/man \
17 --with-html-dir=/usr/share/doc $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib $fs/usr/share/locale
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
28 strip -s $fs/usr/lib/*.so*
29 }