Compare commits
No commits in common. "c2bdb476a4e0fbb243205b02e7b1a166ea85d16d" and "badcef064a7be9bcfee14a44e14be991943cf959" have entirely different histories.
c2bdb476a4
...
badcef064a
6 changed files with 2 additions and 29 deletions
3
bash/build
Executable file → Normal file
3
bash/build
Executable file → Normal file
|
@ -1,7 +1,6 @@
|
|||
wget https://ftp.gnu.org/gnu/bash/bash-5.1.8.tar.gz
|
||||
tar -xf bash-5.1.8.tar.gz
|
||||
cd bash-5.1.8
|
||||
sed -e 's/$(prefix)/$(DESTDIR)$(prefix)/g' -i Makefile
|
||||
./configure
|
||||
make
|
||||
make install DESTDIR="$1"
|
||||
make install
|
||||
|
|
10
nano/build
10
nano/build
|
@ -1,10 +0,0 @@
|
|||
wget https://www.nano-editor.org/dist/v5/nano-5.8.tar.xz
|
||||
tar -xf nano-5.8.tar.xz
|
||||
cd nano-5.8
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-utf8 \
|
||||
--docdir=/usr/share/doc/nano-5.8
|
||||
make
|
||||
make install &&
|
||||
install -v -m644 doc/{nano.html,sample.nanorc} /usr/share/doc/nano-5.8
|
|
@ -1,5 +0,0 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="5.8"
|
||||
pkg_config_name="nano"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
2
pthread/build
Executable file → Normal file
2
pthread/build
Executable file → Normal file
|
@ -1,6 +1,6 @@
|
|||
wget https://ftp.gnu.org/gnu/pth/pth-2.0.7.tar.gz
|
||||
tar -xf pth-2.0.7.tar.gz
|
||||
cd pth-2.0.7
|
||||
cd pth-2.0.7.tar.gz
|
||||
sed -i 's#$(LOBJS): Makefile#$(LOBJS): pth_p.h Makefile#' Makefile.in
|
||||
./configure --prefix=/usr --disable-static --mandir=/usr/share/man
|
||||
make
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
wget https://www.zsh.org/pub/zsh-5.8.tar.xz
|
||||
tar -xf zsh-5.8.tar.xz
|
||||
cd zsh-5.8
|
||||
./configure --prefix=/usr --sysconfdir=/etc/zsh --enable-etcdir=/etc/zsh
|
||||
make
|
||||
make install DESTDIR="$1"
|
|
@ -1,5 +0,0 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="5.8"
|
||||
pkg_config_name="zsh"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
Loading…
Reference in a new issue