23 lines
674 B
Text
Executable file
23 lines
674 B
Text
Executable file
# Description: Programs for compressing and decompressing files
|
|
# URL: https://tukaani.org/xz/
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=xz
|
|
version=5.2.4
|
|
release=1
|
|
source=(https://tukaani.org/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mkdir -pv $PKG/{bin,lib}
|
|
mv -v $PKG/usr/bin/{lzma,unlzma,lzcat,xz,unxz,xzcat} $PKG/bin
|
|
mv -v $PKG/usr/lib/liblzma.so.* $PKG/lib
|
|
ln -svf ../../lib/$(readlink $PKG/usr/lib/liblzma.so) $PKG/usr/lib/liblzma.so
|
|
}
|