opt/gnuplot/Pkgfile

23 lines
644 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GNUPlot, a graph plotting software
# URL: http://www.gnuplot.info/
2008-07-11 09:29:19 +02:00
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
2006-02-23 16:26:10 +01:00
# Packager: Martin Opel, mo at obbl-net dot de
2010-03-16 18:43:49 +01:00
# Depends on: libgd pango
2006-02-23 16:26:10 +01:00
name=gnuplot
2010-09-28 20:27:00 +02:00
version=4.4.2
2007-04-10 16:47:56 +02:00
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure --prefix=/usr \
2008-09-29 15:37:42 +02:00
--mandir=/usr/man \
2007-04-10 16:47:56 +02:00
--libexecdir=/usr/lib \
2010-03-16 18:43:49 +01:00
--with-x \
--without-wxwidgets
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2010-03-16 18:43:49 +01:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}