1 # Maintainer: Eric Biggers <ebiggers3 at gmail dot com>
6 pkgdesc="A library and program to extract, create, and modify WIM files"
8 url="https://wimlib.net"
10 depends=("openssl" "fuse" "libxml2" "ntfs-3g")
12 optdepends=("cdrkit: for making ISO image of Windows PE"
13 "mtools: for making disk image of Windows PE"
14 "syslinux: for making disk image of Windows PE"
15 "cabextract: for extracting Windows PE from the WAIK")
16 source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz")
20 ./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr
31 make DESTDIR="$pkgdir" install
32 for file in NEWS README; do
33 install -Dm644 $file "$pkgdir/usr/share/doc/$pkgname/$file"
35 for file in COPYING*; do
36 install -Dm644 $file "$pkgdir/usr/share/licenses/$pkgname/$file"