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.
27 lines
424 B
27 lines
424 B
|
6 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
#### acl
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
tar -xf acl-2.2.53.tar.gz
|
||
|
|
|
||
|
|
cd acl-2.2.53
|
||
|
|
|
||
|
|
./configure --prefix=/usr \
|
||
|
|
--bindir=/bin \
|
||
|
|
--disable-static \
|
||
|
|
--libexecdir=/usr/lib \
|
||
|
|
--docdir=/usr/share/doc/acl-2.2.53
|
||
|
|
|
||
|
|
make
|
||
|
|
make install
|
||
|
|
|
||
|
|
mv -v /usr/lib/libacl.so.* /lib
|
||
|
|
ln -sfv ../../lib/"$(readlink /usr/lib/libacl.so)" /usr/lib/libacl.so
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
rm -rf acl-2.2.53
|
||
|
|
|