blob: af89b1f4e97655cd0d63ef3297bf6ccfe08f3d99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Utilitaire pour extraire/comprimer les fichiers lzma
# URL: http://tukaani.org/xz/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=xz-utils
version=5.0.1
release=1
source=(http://tukaani.org/xz/xz-$version.tar.gz)
build() {
cd xz-$version
./configure --prefix=/usr \
--enable-dynamic \
--sysconfdir=/etc \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}
|