netcfg 3.2

This commit is contained in:
AlmAck 2015-08-15 22:52:24 +00:00
parent 66426e2dfb
commit ed588e70de

View File

@ -1,29 +1,36 @@
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=netcfg
pkgver=2.8.3
pkgver=3.2
pkgrel=1
pkgdesc="Network configuration and profile scripts"
url="http://archlinux.org"
license=("BSD")
pkgdesc='Network configuration and profile scripts'
url='https://github.com/GNU-Pony/netcfg/'
license=(BSD)
backup=(etc/iftab etc/conf.d/netcfg)
depends=("coreutils" "dhcpcd>=4.0" "iproute2")
optdepends=('dialog: Required for menu based profile selector'
'wpa_supplicant: required for wireless network support'
'wpa_actiond: Required for automatic wireless connection with rc.d/net-auto-wireless'
'ifplugd: Required for automatic wired connection with rc.d/net-auto-wired'
'wireless_tools: Required to support obsolete IWCONFIG option'
'net-tools: required to support obsolete IFOPTS option'
)
source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.xz)
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")
arch=(any)
md5sums=('96a6bf67cfddf100ea2113be71775289')
sha256sums=(1c78f046af2d6f3aa13476cac804a05ee14ffef2b5f6b30dbba055400755a08f)
package() {
cd "$srcdir/netcfg-${pkgver}"
make DESTDIR="$pkgdir" install
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/netcfg/LICENSE"
}
# 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"
}