wok view mp/receipt @ rev 12124

clutter-gtk: fix bdeps
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 13 01:25:08 2012 +0100 (2012-03-13)
parents bae029d27902
children 2bcf0c62df40
line source
1 # SliTaz package receipt.
3 PACKAGE="mp"
4 VERSION="5.1.3"
5 CATEGORY="development"
6 SHORT_DESC="A text editor for programmers"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://triptico.com/software/mp.html"
11 WGET_URL="http://triptico.com/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 mkdir -p $PWD/_pkg/usr/bin
18 ./config.sh \
19 --prefix=/usr \
20 --without-qt4 \
21 $CONFIGURE_ARGS
22 make && 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/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/mp-5 $fs/usr/share
31 }