12 lines
199 B
Makefile
12 lines
199 B
Makefile
prepare:
|
|
git clone https://git.tukaani.org/xz.git
|
|
cd xz
|
|
make:
|
|
./configure \
|
|
--prefix=${PREFIX} \
|
|
--disable-nls
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|