X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=3b5bf23cd14963f7cf64918f75ba45ccf853193f;hp=1b6afd7725ecd12243ddca3752a2abaa91cf69b9;hb=09e9bf4f6dfc6a196aa2c85f85b7da81e6bd70f7;hpb=d00a238151ae7c8e091d938234a14572ef43b5f3 diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 1b6afd77..3b5bf23c 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,9 +1,9 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.4 +pkgver=1.6.1 pkgrel=1 -pkgdesc="A library to extract, create, and modify WIM files" +pkgdesc="A library and program to extract, create, and modify WIM files" arch=("i686" "x86_64") url="http://sourceforge.net/projects/wimlib" license=("GPL3") @@ -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 }