wok view gtkspell/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 d4b159e1110b
children 128aae84d74c
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkspell"
4 VERSION="2.0.16"
5 CATEGORY="development"
6 SHORT_DESC="provides highlighting and replacement of misspelled words"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gtkspell.sourceforge.net"
11 WGET_URL="$WEB_SITE/download/$TARBALL"
13 DEPENDS="enchant gtk+ cairo"
14 BUILD_DEPENDS="enchant enchant-dev gtk+-dev pkg-config intltool expat-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }