wok rev 17259
Add xar.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Oct 22 00:09:32 2014 +0300 (2014-10-22) |
parents | c2ca753f2eae |
children | 4466c09bba16 |
files | xar-dev/receipt xar/description.txt xar/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xar-dev/receipt Wed Oct 22 00:09:32 2014 +0300 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xar-dev" 1.7 +VERSION="1.5.2" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="eXtensible ARchiver (development)" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="BSD" 1.12 +WEB_SITE="http://code.google.com/p/xar/" 1.13 +WANTED="xar" 1.14 + 1.15 +DEPENDS="xar" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr/lib 1.21 + cp -a $install/usr/include $fs/usr 1.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.23 + cp -a $install/usr/share $fs/usr 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xar/description.txt Wed Oct 22 00:09:32 2014 +0300 2.3 @@ -0,0 +1,8 @@ 2.4 +The XAR project aims to provide an easily extensible archive format. Important 2.5 +design decisions include an easily extensible XML table of contents for random 2.6 +access to archived files, storing the toc at the beginning of the archive 2.7 +to allow for efficient handling of streamed archives, the ability to handle 2.8 +files of arbitrarily large sizes, the ability to choose independent encodings 2.9 +for individual files in the archive, the ability to store checksums for 2.10 +individual files in both compressed and uncompressed form, and the ability 2.11 +to query the table of content's rich meta-data.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xar/receipt Wed Oct 22 00:09:32 2014 +0300 3.3 @@ -0,0 +1,28 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xar" 3.7 +VERSION="1.5.2" 3.8 +CATEGORY="utilities" 3.9 +SHORT_DESC="eXtensible ARchiver" 3.10 +MAINTAINER="al.bobylev@gmail.com" 3.11 +LICENSE="BSD" 3.12 +WEB_SITE="http://code.google.com/p/xar/" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WGET_URL="http://xar.googlecode.com/files/$TARBALL" 3.15 + 3.16 +DEPENDS="acl attr bzlib glibc-base libcrypto libxml2 zlib" 3.17 +BUILD_DEPENDS="openssl-dev zlib-dev bzip2-dev" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + ./configure $CONFIGURE_ARGS && make && make install 3.23 +} 3.24 + 3.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.26 +genpkg_rules() 3.27 +{ 3.28 + mkdir -p $fs/usr/lib $fs/usr/share/mime/packages 3.29 + cp -a $install/usr/bin $fs/usr 3.30 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.31 +}