wok view plotdrop/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
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 }