xz: initial release
This commit is contained in:
parent
d42d87cb6a
commit
b855817855
51
xz/.footprint
Normal file
51
xz/.footprint
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
drwxr-xr-x root/root usr/
|
||||||
|
drwxr-xr-x root/root usr/bin/
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzcat -> xz
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzcmp -> lzdiff
|
||||||
|
-rwxr-xr-x root/root usr/bin/lzdiff
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzegrep -> lzgrep
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzfgrep -> lzgrep
|
||||||
|
-rwxr-xr-x root/root usr/bin/lzgrep
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzless -> lzmore
|
||||||
|
lrwxrwxrwx root/root usr/bin/lzma -> xz
|
||||||
|
-rwxr-xr-x root/root usr/bin/lzmadec
|
||||||
|
-rwxr-xr-x root/root usr/bin/lzmore
|
||||||
|
lrwxrwxrwx root/root usr/bin/unlzma -> xz
|
||||||
|
lrwxrwxrwx root/root usr/bin/unxz -> xz
|
||||||
|
-rwxr-xr-x root/root usr/bin/xz
|
||||||
|
lrwxrwxrwx root/root usr/bin/xzcat -> xz
|
||||||
|
-rwxr-xr-x root/root usr/bin/xzdec
|
||||||
|
drwxr-xr-x root/root usr/include/
|
||||||
|
-rw-r--r-- root/root usr/include/lzma.h
|
||||||
|
drwxr-xr-x root/root usr/include/lzma/
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/base.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/bcj.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/block.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/check.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/container.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/delta.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/filter.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/index.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/index_hash.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/lzma.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/stream_flags.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/subblock.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/version.h
|
||||||
|
-rw-r--r-- root/root usr/include/lzma/vli.h
|
||||||
|
drwxr-xr-x root/root usr/lib/
|
||||||
|
-rw-r--r-- root/root usr/lib/liblzma.a
|
||||||
|
-rwxr-xr-x root/root usr/lib/liblzma.la
|
||||||
|
lrwxrwxrwx root/root usr/lib/liblzma.so -> liblzma.so.0.0.0
|
||||||
|
lrwxrwxrwx root/root usr/lib/liblzma.so.0 -> liblzma.so.0.0.0
|
||||||
|
-rwxr-xr-x root/root usr/lib/liblzma.so.0.0.0
|
||||||
|
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||||
|
-rw-r--r-- root/root usr/lib/pkgconfig/liblzma.pc
|
||||||
|
drwxr-xr-x root/root usr/man/
|
||||||
|
drwxr-xr-x root/root usr/man/man1/
|
||||||
|
lrwxrwxrwx root/root usr/man/man1/lzcmp.1.gz -> lzdiff.1.gz
|
||||||
|
-rw-r--r-- root/root usr/man/man1/lzdiff.1.gz
|
||||||
|
lrwxrwxrwx root/root usr/man/man1/lzegrep.1.gz -> lzgrep.1.gz
|
||||||
|
lrwxrwxrwx root/root usr/man/man1/lzfgrep.1.gz -> lzgrep.1.gz
|
||||||
|
-rw-r--r-- root/root usr/man/man1/lzgrep.1.gz
|
||||||
|
lrwxrwxrwx root/root usr/man/man1/lzless.1.gz -> lzmore.1.gz
|
||||||
|
-rw-r--r-- root/root usr/man/man1/lzmore.1.gz
|
1
xz/.md5sum
Normal file
1
xz/.md5sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
f00967331a487e88d51207fe17c56f52 xz-4.999.8beta.tar.gz
|
16
xz/Pkgfile
Normal file
16
xz/Pkgfile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
||||||
|
# URL: http://tukaani.org/xz/
|
||||||
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
||||||
|
|
||||||
|
name=xz
|
||||||
|
version=4.999.8beta
|
||||||
|
release=1
|
||||||
|
source=(http://tukaani.org/xz/$name-$version.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $name-$version
|
||||||
|
./configure --prefix=/usr --mandir=/usr/man
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
rm -r $PKG/usr/share
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user