repo/xztools/Makefile

13 lines
199 B
Makefile
Raw Normal View History

2021-06-29 21:49:46 +03:00
prepare:
git clone https://git.tukaani.org/xz.git
cd xz
make:
./configure \
--prefix=${PREFIX} \
2021-06-29 21:49:46 +03:00
--disable-nls
make
install:
make install DESTDIR="${PREFIX}"
2021-06-29 21:49:46 +03:00
uninstall:
make uninstall