6 lines
213 B
Text
Executable file
6 lines
213 B
Text
Executable file
wget -O ${temp_location}/xz/xz.tar.gz https://tukaani.org/xz/xz-5.2.5.tar.gz
|
|
tar -xf ${temp_location}/xz/xz.tar.gz
|
|
cd ${temp_location}/xz/xz
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make install DESTDIR="$1"
|