wok annotate libzip/receipt @ rev 20181
Update some compressors (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jan 29 17:58:54 2018 +0100 (2018-01-29) |
parents | 35a23f513b71 |
children | 84659393c7e8 |
rev | line source |
---|---|
pascal@12805 | 1 # SliTaz package receipt. |
pascal@12805 | 2 |
pascal@12805 | 3 PACKAGE="libzip" |
pascal@20180 | 4 VERSION="1.4.0" |
pascal@12805 | 5 CATEGORY="misc" |
pascal@12805 | 6 SHORT_DESC="C library for reading, creating, and modifying zip archives." |
pascal@12805 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15482 | 8 LICENSE="BSD" |
pascal@17256 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@12805 | 10 WEB_SITE="http://www.nih.at/libzip/" |
pascal@12805 | 11 WGET_URL="${WEB_SITE}$TARBALL" |
pankso@16066 | 12 HOST_ARCH="i486 arm" |
pascal@12805 | 13 |
pascal@20181 | 14 BUILD_DEPENDS="zlib-dev cmake" |
pascal@12805 | 15 DEPENDS="zlib" |
pascal@12805 | 16 |
pascal@12805 | 17 # Rules to configure and make the package. |
pascal@12805 | 18 compile_rules() |
pascal@12805 | 19 { |
pascal@20181 | 20 mkdir build && cd build && |
pascal@20181 | 21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. && |
pascal@15485 | 22 make && make -j 1 install |
pascal@12805 | 23 } |
pascal@12805 | 24 |
pascal@12805 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@12805 | 26 genpkg_rules() |
pascal@12805 | 27 { |
pascal@12805 | 28 mkdir -p $fs/usr/lib |
pascal@12805 | 29 cp -a $install/usr/bin $fs/usr |
pascal@12805 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@12805 | 31 } |