wok-next annotate wimlib/receipt @ rev 21529

updated buildroot (2014.08 -> 2020.05)
author Hans-G?nter Theisgen
date Sat Jun 20 16:34:10 2020 +0100 (2020-06-20)
parents 10df65db91ad
children
rev   line source
al@20519 1 # SliTaz package receipt v2.
pascal@15367 2
pascal@15367 3 PACKAGE="wimlib"
al@20519 4 VERSION="1.12.0"
pascal@15367 5 CATEGORY="utilities"
al@20519 6 SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files"
pascal@15367 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15367 8 LICENSE="GPL3"
al@20519 9 WEB_SITE="https://wimlib.net/"
al@20519 10
pascal@15367 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20519 12 WGET_URL="https://wimlib.net/downloads/$TARBALL"
pascal@15367 13
al@20519 14 BUILD_DEPENDS="libxml2-dev ntfs-3g-dev fuse2-dev openssl-dev"
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@15367 16
al@20519 17 compile_rules() {
al@20604 18 ./configure $CONFIGURE_ARGS &&
al@20604 19 fix libtool &&
al@20604 20 make &&
al@20604 21 make install
pascal@15367 22 }
pascal@15367 23
al@20519 24 genpkg_rules() {
al@20519 25 case $PACKAGE in
al@20519 26 wimlib)
al@20519 27 copy @std
al@20519 28 DEPENDS="fuse2 liblzma libxml2 ntfs-3g openssl zlib \
al@20519 29 mtools cdrkit syslinux cabextract"
al@20519 30 ;;
al@20519 31 *-dev)
al@20519 32 copy @dev
al@20519 33 DEPENDS="wimlib \
al@20519 34 fuse2-dev libxml2-dev ntfs-3g-dev openssl-dev"
al@20519 35 ;;
al@20519 36 esac
pascal@15367 37 }