LFS buld scripts.
http://linuxfromscratch.org/lfs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
192 B
23 lines
192 B
|
6 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
#### gzip
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
tar -xf gzip-1.10.tar.xz
|
||
|
|
|
||
|
|
cd gzip-1.10
|
||
|
|
|
||
|
|
./configure --prefix=/usr
|
||
|
|
|
||
|
|
make
|
||
|
|
make check
|
||
|
|
make install
|
||
|
|
|
||
|
|
mv -fv /usr/bin/gzip /bin
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
rm -rf gzip-1.10
|
||
|
|
|