Date: Tuesday, June 6, 2017 @ 09:16:03 Author: bluewind Revision: 297866
readd old pkgbuild; new package depends on systemd 233 which is still in testing Added: netctl/repos/core-any/ netctl/repos/core-any/PKGBUILD ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Added: core-any/PKGBUILD =================================================================== --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2017-06-06 09:16:03 UTC (rev 297866) @@ -0,0 +1,36 @@ +# Maintainer: Jouke Witteveen <[email protected]> + +pkgname=netctl +pkgver=1.12 +pkgrel=2 +pkgdesc='Profile based systemd network management' +url='http://projects.archlinux.org/netctl.git/' +license=('GPL') +groups=('base') +depends=('coreutils' 'iproute2' 'openresolv' 'systemd') +# The source tarball includes pre-built (using asciidoc) documentation. +makedepends=('pkg-config') +optdepends=('dialog: for the menu based wifi assistant' + 'dhclient: for DHCP support (or dhcpcd)' + 'dhcpcd: for DHCP support (or dhclient)' + 'wpa_supplicant: for wireless networking support' + 'ifplugd: for automatic wired connections through netctl-ifplugd' + 'wpa_actiond: for automatic wireless connections through netctl-auto' + 'ppp: for PPP connections' + 'openvswitch: for Open vSwitch connections' + ) +source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig}) +arch=('any') +md5sums=('8b7ccdfb585ea50f5b9022c265ba8c96' + 'ce7b66719f03fd71142658abb103bd5a') +validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E') # Florian Pritz + +package() { + cd "$srcdir/netctl-${pkgver}" + make DESTDIR="$pkgdir" install + + # Shell Completion + install -D -m644 contrib/bash-completion "$pkgdir/usr/share/bash-completion/completions/netctl" + install -D -m644 contrib/zsh-completion "$pkgdir/usr/share/zsh/site-functions/_netctl" +} +
