diff options
author | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-24 18:29:45 -0500 |
---|---|---|
committer | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-24 18:29:45 -0500 |
commit | 65e6e37fc0426c10c60062a72ea6283a6ec9daa1 (patch) | |
tree | 9bd85b9f7bd353cd9e4a343156ad2d2a34efb55e /data/dialog/make.sh | |
parent | 5afbca8d160966d05127ba4460cd83990edf5ef0 (diff) |
Added dialog (homebrew)
Diffstat (limited to 'data/dialog/make.sh')
-rw-r--r-- | data/dialog/make.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/dialog/make.sh b/data/dialog/make.sh new file mode 100644 index 000000000..2b553e9a5 --- /dev/null +++ b/data/dialog/make.sh @@ -0,0 +1,9 @@ +pkg:setup +CFLAGS="-include term.h" pkg:configure --with-ncurses +# configure doesn't include ncurses/term.h and will error out without that CFLAG. +# (Due to a undefined `tgoto`) +pkg:make +pkg:install install-full + +# Also installs headers and a static lib- uncomment for removal +# pkg: rm -rf ${PKG_TAPF}/{lib,include} |