Date: Friday, October 18, 2019 @ 06:42:03 Author: anthraxx Revision: 516652
upgpkg: iwd 0.22-3 (fix config perm, add README, add soname depends) - fix FS#64163 /etc/iwd/main.conf is marked executable! - README provides some nice info that may be worth distributing - soname depends stops system breakage, so lets use it - add back vim mode line, i hate when people with different globa settings screw up a foreign PKGBUILD. - add glibc, its a first level hard dependency after all, this is not a PKGBUILD golf competition. Modified: iwd/trunk/PKGBUILD ----------+ PKGBUILD | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-10-18 06:13:53 UTC (rev 516651) +++ PKGBUILD 2019-10-18 06:42:03 UTC (rev 516652) @@ -1,14 +1,15 @@ # Maintainer : Christian Rebischke <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> # Contributor: AndyRTR <andyrtr at archlinux.org> pkgname=iwd pkgver=0.22 -pkgrel=2 +pkgrel=3 pkgdesc='Internet Wireless Daemon' arch=('x86_64') url='https://git.kernel.org/cgit/network/wireless/iwd.git/' license=('LGPL') -depends=('readline' 'ell') +depends=('glibc' 'readline' 'libreadline.so' 'ell') makedepends=('python-docutils') backup=(etc/iwd/main.conf) source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign}) @@ -42,5 +43,8 @@ package() { cd ${pkgname}-${pkgver} make install DESTDIR="${pkgdir}" - install -Dt "$pkgdir/etc/iwd" doc/main.conf + install -Dm 644 doc/main.conf -t "${pkgdir}/etc/iwd" + install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}" } + +# vim: ts=2 sw=2 et:
