X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=0ce073e3d0f3db44cdb5b8677274127febb56bbe;hp=0f18eb367053cc5054db41d03078e2652bd47fe2;hb=794ecd09fc527e3328e469c14e563d42a7a70a39;hpb=a5e30a05b4d7f02c57cc8fbb18e22d6fe31a79a0 diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 0f18eb36..0ce073e3 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.0 +pkgver=1.4.0 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 }