mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-01 12:00:27 +00:00
15 lines
476 B
Bash
Executable file
15 lines
476 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
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.
|
|
files="https://github.com/gnuplot/gnuplot/archive/${version}.tar.gz gnuplot-${version}.tar.gz"
|
|
configopts="--prefix=$SERENITY_ROOT/Build/Root/usr/local --with-readline=builtin"
|
|
|
|
pre_configure() {
|
|
run ./prepare
|
|
}
|
|
|
|
install() {
|
|
run make install-strip
|
|
}
|