wok view aiksaurus/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents affc0ad88f4c
children 3105f866bc3e
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://aiksaurus.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ expat xorg-libXau glib"
14 BUILD_DEPENDS="gtk+-dev patch expat-dev xorg-libXau-dev glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 patch -Np0 -i $stuff/aiksaurus-gcc44.patch
21 ./configure --with-gtk $CONFIGURE_ARGS &&
22 make && make -j1 DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $install/usr/share $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }