wok view plotdrop/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents 4f58f85ea594
children 93aeb50b727e
line source
1 # SliTaz package receipt.
3 PACKAGE="plotdrop"
4 VERSION="0.5.3"
5 CATEGORY="graphics"
6 SHORT_DESC="A minimal GTK frontend to GNUPlot."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://plotdrop.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/project/$PACKAGE/$TARBALL"
13 DEPENDS="gnuplot gtk+ libxml2 expat xorg-libX11 libglade"
14 BUILD_DEPENDS="libglade-dev glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make PREFIX=/usr &&
21 make PREFIX=/usr DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share $fs/usr
30 rm $fs/usr/share/$PACKAGE/*.png
31 }