22 lines
493 B
Plaintext
22 lines
493 B
Plaintext
# Description: GNUPlot, a graph plotting software
|
|
# URL: http://www.gnuplot.info/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: libgd pango
|
|
|
|
name=gnuplot
|
|
version=5.4.6
|
|
release=2
|
|
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--with-x \
|
|
--with-qt=no
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm $PKG/usr/share/gnuplot/${version%.*}/js/README
|
|
}
|