X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=e0845cfe1bc8aff191e10820fed89c1e0e19ce00;hp=11138a861008d44f8963b0aa4e06952e1eb91d03;hb=5b6eaafbaab217fc69946685862a09afa28b30cb;hpb=ec60614b1897da8e615c9159a38552648dda53d6 diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 11138a86..e0845cfe 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.5.3 +pkgver=1.7.2 pkgrel=1 pkgdesc="A library and program to extract, create, and modify WIM files" arch=("i686" "x86_64") url="http://sourceforge.net/projects/wimlib" -license=("GPL3") +license=("custom") depends=("openssl" "fuse" "libxml2" "ntfs-3g" "attr") optdepends=("cdrkit: for making ISO image of Windows PE" "mtools: for making disk image of Windows PE" @@ -18,8 +18,7 @@ source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") build() { cd "$pkgname-$pkgver" - ./configure --with-libcrypto --with-fuse --with-ntfs-3g \ - --enable-xattr --prefix=/usr + ./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr make } @@ -31,7 +30,10 @@ check() { package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install - for file in README NEWS README.WINDOWS; do + for file in NEWS README*; do install -Dm644 $file "$pkgdir/usr/share/doc/$pkgname/$file" done + for file in COPYING*; do + install -Dm644 $file "$pkgdir/usr/share/licenses/$pkgname/$file" + done }