wok-current view gtksourceview/receipt @ rev 2374
slitaz-eeepc: add support for EeePC 900 (Thanks crunchybits)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Mar 06 22:26:42 2009 +0100 (2009-03-06) |
parents | |
children | c91fdd0583b9 |
line source
1 # SliTaz package receipt.
3 PACKAGE="gtksourceview"
4 VERSION="2.4.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Extends GTK+ framework for multiline text editing."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://projects.gnome.org/gtksourceview/"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gtksourceview/2.4/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/share/gtksourceview* $fs/usr/share
31 }