15 lines
258 B
Bash
15 lines
258 B
Bash
#!/bin/sh
|
|
pkg_ver="todo"
|
|
|
|
pkg_install(){
|
|
git clone https://git.tukaani.org/xz.git
|
|
cd xz
|
|
./configure \
|
|
--prefix=${PREFIX}/usr \
|
|
--disable-nls
|
|
make
|
|
make install DESTDIR="${PREFIX}"
|
|
}
|
|
pkg_uninstall(){
|
|
make uninstall
|
|
}
|