repo/xztools/Makefile
2021-06-30 00:59:16 +03:00

12 lines
190 B
Makefile

prepare:
git clone https://git.tukaani.org/xz.git
cd xz
make:
./configure \
--prefix=/usr \
--disable-nls
make
install:
make install DESTDIR="${PREFIX}"
uninstall:
make uninstall