X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=b8195b1fce18c0c424ee08819b6e605c024b9e80;hp=6fe4d72c89211f778ca466ba6e96617858e9a312;hb=51df3b63c594a7e35446d2e2e19637e54240b0b2;hpb=b5ebbcd5e245b48791404f1f88ee006f4eeec3a2 diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 6fe4d72c..b8195b1f 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.1.0 +pkgver=1.8.3 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") +url="https://wimlib.net" +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" @@ -14,12 +14,11 @@ optdepends=("cdrkit: for making ISO image of Windows PE" "cabextract: for extracting Windows PE from the WAIK" "ntfsprogs: for making NTFS filesystems") checkdepends=("ntfsprogs") -source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +source=("https://wimlib.net/downloads/$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 --prefix=/usr make } @@ -31,6 +30,10 @@ check() { package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install + 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 } - -sha512sums=('6ad94bb7de9c6cadbbf50644dc3807ba993c1e149ce6a0d91380bfbfe59943bfa78fd06a835f426cc7b3dfa2c59a269abc2f3d4d8d12fb3681f72aeefbdb873a')