summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 01aee0b4932e765539bd906f31bb00542418afd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: Gabriele Fulgaro <gabriele.fulgaro@gmail.com>

_pkgname="vdetelweb"

pkgname="$_pkgname-git"
pkgver=1.2.1
pkgrel=1
pkgdesc="Telnet and WEB interface for VDE2"
arch=(any)
url="https://github.com/virtualsquare/vdetelweb"
license=('GPL2')
groups=('view-os')
depends=('liblwipv6-dev' 'mhash')
#makedepends=()
#optdepends=()
provides=("$_pkgname")
conflicts=("$_pkgname")
replaces=("$_pkgname")
backup=('etc/vde/vdetelwebrc')
#options=()
#install=
#changelog=
source=("git+https://github.com/virtualsquare/$_pkgname.git")
#noextract=()
md5sums=('SKIP')

build() {
  cd "$_pkgname"
  
  autoreconf -i
  ./configure --prefix="/usr"  --sysconfdir="/etc"
  make
}

package() {
  cd "$_pkgname"

  make DESTDIR="$pkgdir/" install
}