blob: b2987e0c145ee857c0a88acf9c0bf9c01f82e596 (
plain)
1 # Description: GNUPlot, a graph plotting software
2 # URL: http://www.gnuplot.info/
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4 # Packager: Martin Opel, mo at obbl-net dot de
5 # Depends on: readline, x11
6
7 name=gnuplot
8 version=4.0.0
9 release=2
10 source=(http://dl.sourceforge.net/sourceforge/gnuplot/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 sed -i -e '/^install:/s/install-info//' \
15 -e '/^all:/s/gnuplot\.info//' \
16 docs/Makefile.in
17 ./configure --prefix=/usr \
18 --with-png \
19 --with-x \
20 --x-include=/usr/X11R6/include \
21 --x-libraries=/usr/X11R6/lib \
22 --with-readline=gnu \
23 --libexecdir=/usr/lib
24 make
25 make DESTDIR=$PKG install
26 rm -rf $PKG/usr/{info,share/emacs}
27 }
|