wok view gtksourceview/receipt @ rev 5353

Up: qt-everywhere-opensource-src (4.6.2) - Renamed qt-x11-opensource-src to qt-everywhere-opensource-src. Updated WEBSITE and WGET_URL. Remove libQtOpenGL since its not in qt anymore.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 28 16:29:16 2010 +0000 (2010-04-28)
parents c91fdd0583b9
children b645f1052cb1
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"
11 DEPENDS="expat gtk+ libxml2 xorg-libX11 xorg-libXau xorg-libXcomposite \
12 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \
13 xorg-libXrandr xorg-libXrender xorg-libXdamage"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/share/gtksourceview* $fs/usr/share
34 }