X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=archlinux%2FPKGBUILD;h=027ca1c69fbe1e0191c8d0599de02845d7014030;hp=8157966ab99fd1bce49a1f7c07dc6904fed98873;hb=c0a64271ae792a19b7ed584f8e3da4a70f58c691;hpb=70297d04c28e8134366b359076bb1f3d73c667c2;ds=sidebyside diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 8157966a..027ca1c6 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -6,7 +6,7 @@ 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" @@ -30,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 }