core/netcfg/PKGBUILD

36 lines
1.3 KiB
Bash
Raw Normal View History

2011-06-17 18:43:38 +08:00
2010-05-22 06:07:29 +08:00
pkgname=netcfg
2015-08-16 06:52:24 +08:00
pkgver=3.2
2011-06-17 18:43:38 +08:00
pkgrel=1
2015-08-16 06:52:24 +08:00
pkgdesc='Network configuration and profile scripts'
url='https://github.com/GNU-Pony/netcfg/'
license=(BSD)
2011-08-08 16:48:54 +08:00
backup=(etc/iftab etc/conf.d/netcfg)
2015-08-16 06:52:24 +08:00
groups=(base)
depends=(coreutils dhcpcd iproute2)
makedepends=(asciidoc)
conflicts=(netctl)
optdepends=('dialog: for the menu based profile and wifi selectors'
'wpa_supplicant: for wireless networking support'
'ifplugd: for automatic wired connections through net-auto-wired'
'wpa_actiond: for automatic wireless connections through net-auto-wireless'
'wireless_tools: for interface renaming through net-rename'
'ifenslave: for bond connections'
'bridge-utils: for bridge connections'
)
source=("https://github.com/GNU-Pony/netcfg/archive/${pkgver}.tar.gz")
2010-05-22 06:07:29 +08:00
arch=(any)
2015-08-16 06:52:24 +08:00
sha256sums=(1c78f046af2d6f3aa13476cac804a05ee14ffef2b5f6b30dbba055400755a08f)
2010-05-22 06:07:29 +08:00
2011-06-17 18:43:38 +08:00
package() {
cd "$srcdir/netcfg-${pkgver}"
make DESTDIR="$pkgdir" install
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/netcfg/LICENSE"
2015-08-16 06:52:24 +08:00
# Shell Completion
install -D -m644 contrib/bash-completion "$pkgdir/usr/share/bash-completion/completions/netcfg"
install -D -m644 contrib/zsh-completion "$pkgdir/usr/share/zsh/site-functions/_netcfg"
# Compatibility
ln -s netcfg.service "$pkgdir/usr/lib/systemd/system/net-profiles.service"
}