22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
|
# Description: GNUPlot, built against qt5
|
||
|
# URL: http://www.gnuplot.info/
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: libgd pango qt5
|
||
|
|
||
|
name=gnuplot-qt5
|
||
|
version=5.4.3
|
||
|
release=1
|
||
|
source=(https://downloads.sourceforge.net/project/${name:0:7}/${name:0:7}/$version/${name:0:7}-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name:0:7}-$version
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib \
|
||
|
--with-qt \
|
||
|
--with-x=no
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm $PKG/usr/share/gnuplot/${version%.*}/js/README
|
||
|
}
|