mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
21 lines
607 B
Bash
21 lines
607 B
Bash
![]() |
# $Id: PKGBUILD 35980 2009-04-19 06:38:09Z eric $
|
||
|
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
|
||
|
pkgname=vconfig
|
||
|
pkgver=1.9
|
||
|
pkgrel=2
|
||
|
pkgdesc="VLAN configuration utility"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.candelatech.com/~greear/vlan.html"
|
||
|
license=('GPL')
|
||
|
depends=('glibc')
|
||
|
source=(http://www.candelatech.com/~greear/vlan/vlan.${pkgver}.tar.gz)
|
||
|
md5sums=('5f0c6060b33956fb16e11a15467dd394')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/vlan
|
||
|
make clean || return 1
|
||
|
make || return 1
|
||
|
install -D -m755 vconfig $pkgdir/usr/sbin/vconfig || return 1
|
||
|
install -D -m644 vconfig.8 $pkgdir/usr/share/man/man8/vconfig.8 || return 1
|
||
|
}
|