diff options
author | davidovski <david@davidovski.xyz> | 2022-03-03 00:13:55 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-03 00:13:55 +0000 |
commit | 2fea415a8b6ab9eae92686a182341d8f5fe56d00 (patch) | |
tree | 889fee82b0ebde2870be7673fc7eff9c2bc2efeb /repo/util | |
parent | 92a76bb80efda3fcb96cb0a990ae5bfa658449d1 (diff) |
fixed docbook issues
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/grep.xibuild | 2 | ||||
-rw-r--r-- | repo/util/less.xibuild | 2 | ||||
-rw-r--r-- | repo/util/nmap.xibuild | 2 | ||||
-rw-r--r-- | repo/util/vim.xibuild | 39 | ||||
-rw-r--r-- | repo/util/wget.xibuild | 2 |
5 files changed, 4 insertions, 43 deletions
diff --git a/repo/util/grep.xibuild b/repo/util/grep.xibuild index 0ce778a..e7689f9 100644 --- a/repo/util/grep.xibuild +++ b/repo/util/grep.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="grep make " -DEPS="musl pcre" +DEPS="musl pcre2" PKG_VER=3.7 SOURCE=https://ftp.gnu.org/gnu/grep/grep-$PKG_VER.tar.xz diff --git a/repo/util/less.xibuild b/repo/util/less.xibuild index ddaf791..394bf91 100644 --- a/repo/util/less.xibuild +++ b/repo/util/less.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make " -DEPS="musl ncurses pcre" +DEPS="musl ncurses pcre2" PKG_VER=590 SOURCE=https://www.greenwoodsoftware.com/less/less-$PKG_VER.tar.gz diff --git a/repo/util/nmap.xibuild b/repo/util/nmap.xibuild index ab53620..3fd85e8 100644 --- a/repo/util/nmap.xibuild +++ b/repo/util/nmap.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make " -DEPS="libpcap lua pcre liblinear" +DEPS="libpcap lua pcre2 liblinear" PKG_VER=7.92 SOURCE=https://nmap.org/dist/nmap-$PKG_VER.tar.bz2 diff --git a/repo/util/vim.xibuild b/repo/util/vim.xibuild deleted file mode 100644 index d8ee93b..0000000 --- a/repo/util/vim.xibuild +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make " -DEPS="gpm acl musl libgcrypt pcre zlib" - -PKG_VER=8.2.4257 -SOURCE=https://github.com/vim/vim/archive/refs/tags/v$PKG_VER.tar.gz -DESC="Vi Improved" - -prepare () { - echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h -} - -build () { - ./configure --prefix=/usr --disable-gtk-check --disable-motif-check --disable-athena-check --disable-gui --disable-xsmp --without-x -disable-canberra --disable-libsodium --disable-gpm --disable-libsodium - make -} - - -package () { -make DESTDIR=$PKG_DEST install - - mkdir -pv $PKG_DEST/etc - cat > $PKG_DEST/etc/vimrc << "EOF" -" Begin /etc/vimrc -" Ensure defaults are set before customizing settings, not after -source $VIMRUNTIME/defaults.vim -let skip_defaults_vim=1 -set nocompatible -set backspace=2 -set mouse= -syntax on -if (&term == "xterm") || (&term == "putty") - set background=dark -endif -" End /etc/vimrc -EOF - -} diff --git a/repo/util/wget.xibuild b/repo/util/wget.xibuild index ac8be7b..035e231 100644 --- a/repo/util/wget.xibuild +++ b/repo/util/wget.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make " -DEPS="musl gnutls libidn2 libpsl nettle util-linux pcre2 zlib cacerts" +DEPS="musl gnutls libidn2 libpsl nettle util-linux pcre22 zlib cacerts" PKG_VER=1.21.2 SOURCE=https://ftp.gnu.org/gnu/wget/wget-$PKG_VER.tar.gz |