wok view libzip/receipt @ rev 20180

Update some compressors
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 29 16:42:42 2018 +0100 (2018-01-29)
parents 4a1a5d881605
children 8b25fb7e14d8
line source
1 # SliTaz package receipt.
3 PACKAGE="libzip"
4 VERSION="1.4.0"
5 CATEGORY="misc"
6 SHORT_DESC="C library for reading, creating, and modifying zip archives."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.nih.at/libzip/"
11 WGET_URL="${WEB_SITE}$TARBALL"
12 HOST_ARCH="i486 arm"
14 BUILD_DEPENDS="zlib-dev"
15 DEPENDS="zlib"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make -j 1 install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }