wok view aiksaurus/receipt @ rev 8999

asterisk: fix extract-cfile.awk (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 15:08:41 2011 +0100 (2011-03-03)
parents 847e67e5a9fe
children cbfb348cb173
line source
1 # SliTaz package receipt.
3 PACKAGE="aiksaurus"
4 VERSION="1.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A cross-platform, open-source thesaurus."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="gtk+ expat xorg-libXau glib"
9 BUILD_DEPENDS="gtk+-dev patch expat-dev xorg-libXau-dev glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://aiksaurus.sourceforge.net/"
12 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -Np0 -i ../stuff/aiksaurus-gcc44.patch
19 ./configure --with-gtk &&
20 make && make -j1 DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $_pkg/usr/share $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }