wok-next view wimlib/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents 10df65db91ad
children
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="$PACKAGE-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 fix libtool &&
20 make &&
21 make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 wimlib)
27 copy @std
28 DEPENDS="fuse2 liblzma libxml2 ntfs-3g openssl zlib \
29 mtools cdrkit syslinux cabextract"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="wimlib \
34 fuse2-dev libxml2-dev ntfs-3g-dev openssl-dev"
35 ;;
36 esac
37 }