PKGBUILDs/aur/netctl/PKGBUILD

38 lines
1.3 KiB
Bash
Raw Normal View History

2013-01-14 17:03:24 +00:00
# Maintainer: Jouke Witteveen <j.witteveen@gmail.com>
pkgname=netctl
2013-02-02 00:03:21 +00:00
pkgver=0.3
2013-02-03 05:08:52 +00:00
pkgrel=3
2013-01-14 17:03:24 +00:00
arch=(any)
pkgdesc="Network configuration and profile scripts"
2013-02-02 00:03:21 +00:00
url="http://projects.archlinux.org/netctl.git/"
2013-01-14 17:03:24 +00:00
license=("GPL")
depends=("coreutils" "iproute2" "openresolv")
makedepends=('asciidoc')
optdepends=('dialog: for the menu based wifi assistant'
'dhclient: for DHCP support, or use dhcpcd'
'dhcpcd: for DHCP support, or use 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'
)
2013-02-02 00:03:21 +00:00
conflicts=("netcfg")
provides=("netcfg")
2013-01-14 17:03:24 +00:00
2013-02-02 00:03:21 +00:00
2013-02-03 05:08:52 +00:00
source=("ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz"
2013-01-14 17:03:24 +00:00
'zsh-completion')
package() {
2013-02-03 05:08:52 +00:00
make -C "$srcdir/$pkgver" DESTDIR="$pkgdir" install
2013-01-14 17:03:24 +00:00
# Shell Completion
2013-02-03 05:08:52 +00:00
install -Dm644 "$srcdir/$pkgver/contrib/bash-completion" "$pkgdir/usr/share/bash-completion/completions/netctl"
2013-01-14 17:03:24 +00:00
install -Dm644 "$srcdir/zsh-completion" "$pkgdir/usr/share/zsh/site-functions/_netctl"
}
2013-02-03 05:08:52 +00:00
md5sums=('c5db1be925036ae4bd448088119e432c'
2013-02-02 00:03:21 +00:00
'3428e0e7f061bbcde41f2fe64d8d96dd')