X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=31b1069599ddd1258ab941f63c89ba89951e23f0;hb=345d31902b50d440b918d2ec3a16c0f4bfff08ad;hp=4778d8e20f84b7a5205c7bdcf56ac3213b7a4dc9;hpb=72bca3eaa105979a551612a56812250d44f9b049;p=wimlib diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 4778d8e2..31b10695 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,9 +1,9 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.6 +pkgver=1.6.0 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,6 +31,7 @@ check() { package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install - install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/README" - install -Dm644 NEWS "$pkgdir/usr/share/doc/$pkgname/NEWS" + for file in README NEWS README.WINDOWS; do + install -Dm644 $file "$pkgdir/usr/share/doc/$pkgname/$file" + done }