|
|
|
|
@ -16,43 +16,42 @@
|
|
|
|
|
|
|
|
|
|
building on debian sistem
|
|
|
|
|
|
|
|
|
|
[From root shell]
|
|
|
|
|
|
|
|
|
|
- From root shell:
|
|
|
|
|
- apt install dpkg-dev devscripts
|
|
|
|
|
|
|
|
|
|
apt install dpkg-dev devscripts
|
|
|
|
|
- cat /etc/apt/source.list
|
|
|
|
|
|
|
|
|
|
cat /etc/apt/source.list
|
|
|
|
|
- if not enabled add additional line for source packages ( deb-src )
|
|
|
|
|
|
|
|
|
|
if not enabled add additional line for source packages ( deb-src )
|
|
|
|
|
- apt update
|
|
|
|
|
|
|
|
|
|
apt update
|
|
|
|
|
- apt build-dep zsh
|
|
|
|
|
|
|
|
|
|
apt build-dep zsh
|
|
|
|
|
[From build user shell]
|
|
|
|
|
|
|
|
|
|
- From build user shell:
|
|
|
|
|
- apt source zsh
|
|
|
|
|
|
|
|
|
|
apt source zsh
|
|
|
|
|
- cd to zsh source dir
|
|
|
|
|
|
|
|
|
|
cd to zsh source dir
|
|
|
|
|
- wget -O .env "https://git.zfs.mx/zsh/build/raw/branch/master/config/env.empty"
|
|
|
|
|
|
|
|
|
|
wget -O .env ""
|
|
|
|
|
- adjusting .env
|
|
|
|
|
|
|
|
|
|
adjusting .env
|
|
|
|
|
- wget -O .env.lib "https://git.zfs.mx/zsh/build/raw/branch/master/config/env.lib"
|
|
|
|
|
|
|
|
|
|
wget -O .env.lib ""
|
|
|
|
|
- adjusting .env.lib
|
|
|
|
|
|
|
|
|
|
adjusting .env.lib
|
|
|
|
|
- wget -O configure.gen "https://git.zfs.mx/zsh/build/raw/branch/master/config/configure.gen"
|
|
|
|
|
|
|
|
|
|
wget -O configure.gen ""
|
|
|
|
|
- chmod +x configure.gen
|
|
|
|
|
|
|
|
|
|
chmod +x configure.gen
|
|
|
|
|
- ./configure.gen > configure.own.tmp
|
|
|
|
|
|
|
|
|
|
./configure.gen > configure.own.tmp
|
|
|
|
|
- cat configure.own.tmp (checking configure.own.tmp)
|
|
|
|
|
|
|
|
|
|
cat configure.own.tmp (checking configure.own.tmp)
|
|
|
|
|
- bash configure.own.tmp
|
|
|
|
|
|
|
|
|
|
bash configure.own.tmp
|
|
|
|
|
- make
|
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
make install ( make DESTDIR=path install )
|
|
|
|
|
- make install ( or make DESTDIR=path install )
|
|
|
|
|
|