mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
20 lines
607 B
Bash
20 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
|
|
}
|