diff options
author | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
commit | cb447620084a20be80d116c81c2e9ec110be7118 (patch) | |
tree | 9fc0d714abbb5c6326b60616a5fd27ec9f984895 /repo/core/readline.xibuild | |
parent | 153011e9129c6055ef21c48caf65a23e74a91418 (diff) |
restructured repo system
Diffstat (limited to 'repo/core/readline.xibuild')
-rw-r--r-- | repo/core/readline.xibuild | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/repo/core/readline.xibuild b/repo/core/readline.xibuild deleted file mode 100644 index 8b47463..0000000 --- a/repo/core/readline.xibuild +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -DEPS=(glibc ncurses) - -SOURCE=https://ftp.gnu.org/gnu/readline/readline-8.1.tar.gz -DESC="a set of libraries that offer command line editing and history capabilities" - - -build () { - sed -i '/MV.*old/d' Makefile.in - sed -i '/{OLDSUFF}/c:' support/shlib-install - - ./configure --prefix=/usr \ - --disable-static \ - --with-curses \ - --docdir=/usr/share/doc/readline-8.1 - - make SHLIB_LIBS="-lncursesw" - make SHLIB_LIBS="-lncursesw" DESTDIR=$PKG_DEST install - - install -v -m644 doc/*.{ps,pdf,html,dvi} $PKG_DEST/usr/share/doc/readline-8.1 -} - |