1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 08:27:45 +00:00

Ports/gnuplot: Update formatting to be consistent with other ports

This commit is contained in:
Tim Ledbetter 2023-08-24 17:45:50 +01:00 committed by Tim Schumacher
parent 2512544b6b
commit d730cd89f5

View file

@ -1,7 +1,7 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=gnuplot port='gnuplot'
version='5.4.8' version='5.4.8'
useconfigure=true useconfigure='true'
# Note: gnuplot's source code is hosted on SourceForge, but using the GitHub mirror makes downloading a versioned .tar.gz easier. # Note: gnuplot's source code is hosted on SourceForge, but using the GitHub mirror makes downloading a versioned .tar.gz easier.
files=( files=(
"https://github.com/gnuplot/gnuplot/archive/${version}.tar.gz 2b0c1841640b2e33f8421ac83cd91d972d8b0c6acf9753f16385d5eec8a61a73" "https://github.com/gnuplot/gnuplot/archive/${version}.tar.gz 2b0c1841640b2e33f8421ac83cd91d972d8b0c6acf9753f16385d5eec8a61a73"
@ -13,9 +13,9 @@ depends=(
configopts=( configopts=(
"--prefix=${SERENITY_INSTALL_ROOT}/usr/local" "--prefix=${SERENITY_INSTALL_ROOT}/usr/local"
'--with-qt=no' '--with-qt=no'
"--with-readline=builtin" '--with-readline=builtin'
'--without-cairo' '--without-cairo'
"--without-latex" '--without-latex'
'libgd_LIBS=-liconv -lfreetype -lfontconfig -lpng' 'libgd_LIBS=-liconv -lfreetype -lfontconfig -lpng'
) )