wok-next view wimlib/receipt @ rev 20533

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
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 }