diff options
author | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-20 20:49:46 -0500 |
---|---|---|
committer | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-23 20:18:47 -0500 |
commit | 12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch) | |
tree | 352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/gnuplot | |
parent | a2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff) |
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/gnuplot')
-rw-r--r-- | homebrew/gnuplot/.beer | 72 | ||||
-rw-r--r-- | homebrew/gnuplot/.make.sh-auto | 7 | ||||
-rw-r--r-- | homebrew/gnuplot/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/gnuplot/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/gnuplot/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/gnuplot/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/gnuplot/download.sh | 1 |
7 files changed, 84 insertions, 0 deletions
diff --git a/homebrew/gnuplot/.beer b/homebrew/gnuplot/.beer new file mode 100644 index 000000000..ba0cb04e6 --- /dev/null +++ b/homebrew/gnuplot/.beer @@ -0,0 +1,72 @@ +{ + "name": "Gnuplot", + "description": "Command-driven, interactive function plotting", + "url": "https://downloads.sourceforge.net/project/gnuplot/gnuplot/5.2.6/gnuplot-5.2.6.tar.gz", + "mirror": null, + "homepage": "http://www.gnuplot.info/", + "depends": [ + { + "depend": "autoconf", + "build-depend": true + }, + { + "depend": "automake", + "build-depend": true + }, + { + "depend": "libtool", + "build-depend": true + }, + { + "depend": "pkg-config", + "build-depend": true + }, + { + "depend": "gd", + "build-depend": false + }, + { + "depend": "libcerf", + "build-depend": false + }, + { + "depend": "lua", + "build-depend": false + }, + { + "depend": "pango", + "build-depend": false + }, + { + "depend": "qt", + "build-depend": false + }, + { + "depend": "readline", + "build-depend": false + } + ], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "ENV.cxx11", + "args = %W[", + "--disable-dependency-tracking", + "--disable-silent-rules", + "--prefix=#{prefix}", + "--with-readline=#{Formula[\"readline\"].opt_prefix}", + "--without-tutorial", + "--disable-wxwidgets", + "--with-qt", + "--without-x", + "]", + "system \"./prepare\" if build.head?", + "system \"./configure\", *args", + "ENV.deparallelize ", + "system \"make\"", + "system \"make\", \"install\"" + ], + "version": "5.2.6", + "file": "gnuplot.rb" +}
\ No newline at end of file diff --git a/homebrew/gnuplot/.make.sh-auto b/homebrew/gnuplot/.make.sh-auto new file mode 100644 index 000000000..52f751d83 --- /dev/null +++ b/homebrew/gnuplot/.make.sh-auto @@ -0,0 +1,7 @@ +pkg:setup +ENV.cxx11 +args = %W[--disable-dependency-tracking --disable-silent-rules --prefix=#{prefix} --with-readline=#{Formula["readline"].opt_prefix} --without-tutorial --disable-wxwidgets --with-qt --without-x ] +pkg:configure *args +ENV.deparallelize +make +make DESTDIR=${PKG_DEST} install diff --git a/homebrew/gnuplot/_metadata/description b/homebrew/gnuplot/_metadata/description new file mode 100644 index 000000000..1b0435874 --- /dev/null +++ b/homebrew/gnuplot/_metadata/description @@ -0,0 +1 @@ +Command-driven, interactive function plotting diff --git a/homebrew/gnuplot/_metadata/homepage b/homebrew/gnuplot/_metadata/homepage new file mode 100644 index 000000000..179903f27 --- /dev/null +++ b/homebrew/gnuplot/_metadata/homepage @@ -0,0 +1 @@ +http://www.gnuplot.info/ diff --git a/homebrew/gnuplot/_metadata/name b/homebrew/gnuplot/_metadata/name new file mode 100644 index 000000000..44366f38c --- /dev/null +++ b/homebrew/gnuplot/_metadata/name @@ -0,0 +1 @@ +Gnuplot diff --git a/homebrew/gnuplot/_metadata/version b/homebrew/gnuplot/_metadata/version new file mode 100644 index 000000000..a944d7e61 --- /dev/null +++ b/homebrew/gnuplot/_metadata/version @@ -0,0 +1 @@ +5.2.6 diff --git a/homebrew/gnuplot/download.sh b/homebrew/gnuplot/download.sh new file mode 100755 index 000000000..d0a459d37 --- /dev/null +++ b/homebrew/gnuplot/download.sh @@ -0,0 +1 @@ +wget https://downloads.sourceforge.net/project/gnuplot/gnuplot/5.2.6/gnuplot-5.2.6.tar.gz
\ No newline at end of file |