2021-01-23 05:44:05 +13:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2020-04-15 14:23:25 +01:00
|
|
|
port=gnuplot
|
|
|
|
version=5.2.8
|
|
|
|
useconfigure=true
|
|
|
|
# Note: gnuplot's source code is hosted on SourceForge, but using the GitHub mirror makes downloading a versioned .tar.gz easier.
|
2021-04-25 12:20:15 +02:00
|
|
|
files="https://github.com/gnuplot/gnuplot/archive/${version}.tar.gz gnuplot-${version}.tar.gz b55f591e2ad9d01ffca821f2f91ce781b481bb5dd602ce5188bfad3140f44ac0"
|
2021-09-27 00:16:18 +02:00
|
|
|
configopts=("--prefix=${SERENITY_INSTALL_ROOT}/usr/local" "--with-readline=builtin" "--without-latex")
|
2020-04-15 14:23:25 +01:00
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
run ./prepare
|
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
|
|
|
run make install-strip
|
|
|
|
}
|