mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
20 lines
406 B
Plaintext
20 lines
406 B
Plaintext
# description: GNUPlot, a graph plotting software
|
|
# depends: libgd pango
|
|
|
|
name=gnuplot
|
|
version=5.4.9
|
|
release=1
|
|
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
|
|
}
|