Skip to content

gnuplot: fix build as non-root #2307

Merged
merged 1 commit into from
Sep 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions gnuplot.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION gnuplot-5.4.2-0
# BEE_VERSION gnuplot-5.4.2-1

#SRCURL[0]="http://sourceforge.net/projects/gnuplot/files/gnuplot/${PKGVERSION}/gnuplot-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/2050ca477199a591543bc968aba7d899/gnuplot-5.4.2.tar.gz"
Expand All @@ -20,7 +20,10 @@ SRCURL[0]="https://beehive.molgen.mpg.de/2050ca477199a591543bc968aba7d899/gnuplo
#}

mee_configure() {
bee_configure --disable-wxt --with-qt=qt5
bee_configure \
--disable-wxt \
--with-qt=qt5 \
--without-latex
}

#mee_build() {
Expand Down