wok-next view wimlib/receipt @ rev 20581
libisofs: fix installation (Busybox's mkdir can't process --version argument and so ./configure believe it don't work)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Apr 14 09:33:57 2018 +0300 (2018-04-14) |
parents | d43bf7aae921 |
children | 10df65db91ad |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="wimlib"
4 VERSION="1.12.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://wimlib.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://wimlib.net/downloads/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev ntfs-3g-dev fuse2-dev openssl-dev"
15 SPLIT="wimlib-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS && make && make install
19 }
21 genpkg_rules() {
22 case $PACKAGE in
23 wimlib)
24 copy @std
25 DEPENDS="fuse2 liblzma libxml2 ntfs-3g openssl zlib \
26 mtools cdrkit syslinux cabextract"
27 ;;
28 *-dev)
29 copy @dev
30 DEPENDS="wimlib \
31 fuse2-dev libxml2-dev ntfs-3g-dev openssl-dev"
32 ;;
33 esac
34 }