Commit 19bd2b0c authored by Seblu's avatar Seblu
Browse files

add vconfig


git-svn-id: https://seblu.net/s/archpkg@93 02741741-5192-46b8-8916-7152b19231d9
parent 45b3ff3f
Loading
Loading
Loading
Loading

vconfig/PKGBUILD

0 → 100644
+26 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor: Judd Vinet <jvinet@zeroflux.org>

pkgname=vconfig
pkgver=1.9
pkgrel=3
pkgdesc="VLAN configuration utility"
arch=('i686' 'x86_64')
url='http://www.candelatech.com/~greear/vlan.html'
license=('GPL')
source=("http://www.candelatech.com/~greear/vlan/vlan.${pkgver}.tar.gz")
md5sums=('5f0c6060b33956fb16e11a15467dd394')

build() {
  cd vlan
  make clean all
}

package() {
  cd vlan
  install -D -m755 'vconfig' "$pkgdir/usr/sbin/vconfig"
  install -D -m755 'macvlan_config' "$pkgdir/usr/sbin/macvlan_config"
  install -D -m644 'vconfig.8' "$pkgdir/usr/share/man/man8/vconfig.8"
}

# vim:set ts=2 sw=2 ft=sh et: