X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=c4f55e64cae0ed886289ebc1b8bc07ac2199b1bf;hp=31b1069599ddd1258ab941f63c89ba89951e23f0;hb=8c8340effb447f9058f8227550ac368a4b442d23;hpb=345d31902b50d440b918d2ec3a16c0f4bfff08ad diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 31b10695..c4f55e64 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,25 +1,23 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.6.0 +pkgver=1.12.0 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") -depends=("openssl" "fuse" "libxml2" "ntfs-3g" "attr") +url="https://wimlib.net" +license=("custom") +depends=("openssl" "fuse" "libxml2" "ntfs-3g") +checkdepends=("attr") optdepends=("cdrkit: for making ISO image of Windows PE" "mtools: for making disk image of Windows PE" "syslinux: for making disk 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") + "cabextract: for extracting Windows PE from the WAIK") +source=("https://wimlib.net/downloads/$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 +29,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 }