Date: Tuesday, May 21, 2013 @ 14:43:02 Author: bluewind Revision: 186161
archrelease: copy trunk to testing-any Added: netctl/repos/testing-any/ netctl/repos/testing-any/PKGBUILD (from rev 186160, netctl/trunk/PKGBUILD) ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Copied: netctl/repos/testing-any/PKGBUILD (from rev 186160, netctl/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2013-05-21 12:43:02 UTC (rev 186161) @@ -0,0 +1,36 @@ +# Maintainer: Jouke Witteveen <j.wittev...@gmail.com> + +pkgname=netctl +pkgver=1.1 +pkgrel=1 +pkgdesc='Profile based systemd network management' +url='http://projects.archlinux.org/netctl.git/' +license=('GPL') +groups=('base') +depends=('coreutils' 'iproute2' 'openresolv') +# 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' + 'ifenslave: for bond connections' + 'bridge-utils: for bridge connections' + 'ppp: for pppoe connections' + ) +source=(ftp://ftp.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig}) +arch=('any') +md5sums=('599ec9525126369f0b4e287e85debbad' + '794f4ce9e43f64342a976366fe73dbcd') + +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" +} +