X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=1c10709285dc3151596657948fc670b4668141ce;hb=079e5866cba39f85f999057416aec870502f89a0;hp=0b28272a700e2be8898dddf576a45b03af118dde;hpb=2beb22c748f33253876ca690cac7f7284c747106;p=wimlib diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 0b28272a..1c107092 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.5 +pkgver=1.5.1 pkgrel=1 pkgdesc="A library to extract, create, and modify WIM files" arch=("i686" "x86_64") @@ -18,8 +18,8 @@ source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") build() { cd "$pkgname-$pkgver" - ./configure --disable-verify-compression --with-libcrypto --with-fuse \ - --with-ntfs-3g --enable-xattr --prefix=/usr + ./configure --with-libcrypto --with-fuse --with-ntfs-3g \ + --enable-xattr --prefix=/usr make } @@ -31,4 +31,7 @@ check() { package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install + for file in README NEWS README.WINDOWS; do + install -Dm644 $file "$pkgdir/usr/share/doc/$pkgname/$file" + done }