22 lines
658 B
Plaintext
22 lines
658 B
Plaintext
# Description: GNUPlot, a graph plotting software
|
|
# URL: http://www.gnuplot.info/
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
# Depends on: ncurses, readline, libpng, xorg-libx11, xorg-libxau
|
|
|
|
name=gnuplot
|
|
version=4.2.5
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/gnuplot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -i '/^install:/s/install-info//' docs/Makefile.in
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libexecdir=/usr/lib \
|
|
--with-x
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|