summaryrefslogtreecommitdiff
path: root/community/vlan
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/vlan
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/vlan')
-rw-r--r--community/vlan/PKGBUILD32
1 files changed, 0 insertions, 32 deletions
diff --git a/community/vlan/PKGBUILD b/community/vlan/PKGBUILD
deleted file mode 100644
index 01915a0b0..000000000
--- a/community/vlan/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 92650 2013-06-10 15:16:14Z seblu $
-# Maintainer: Sébastien Luttringer
-# Contributor: Judd Vinet <jvinet@zeroflux.org>
-
-pkgname=vlan
-pkgver=1.9
-pkgrel=3
-pkgdesc='Virtual LAN 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 $pkgname
- # don't call clean and all on the same line with -jn (with n > 0)
- # there is a race condition, both target are launched at the same time
- # and as upstream provide target nothing is built.
- # don't use !makeflags in PKGBUILD options to not penalize building
- make clean
- make all
-}
-
-package() {
- cd $pkgname
- install -D -m755 'vconfig' "$pkgdir/usr/bin/vconfig"
- install -D -m755 'macvlan_config' "$pkgdir/usr/bin/macvlan_config"
- install -D -m644 'vconfig.8' "$pkgdir/usr/share/man/man8/vconfig.8"
-}
-
-# vim:set ts=2 sw=2 et: