wok view wimlib/receipt @ rev 20421

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 07 23:03:21 2018 +0200 (2018-08-07)
parents 8267887ae7af
children 0ba37e865e61
line source
1 # SliTaz package receipt.
3 PACKAGE="wimlib"
4 VERSION="1.5.1"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/wimlib/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="libxml2 fuse ntfs-3g libcrypto zlib mtools cdrkit syslinux cabextract"
14 BUILD_DEPENDS="pkg-config libxml2-dev fuse-dev ntfs-3g-dev openssl-dev \
15 attr-dev mtools cdrkit syslinux cabextract"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs
29 }