summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e70047a6c5a69b02112ade7cf9b6a91597067173 (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
# Maintainer: Fabio Di Matteo <pobfdm@gmail.com>
pkgname=pobvnc
pkgver=git
pkgrel=1
epoch=
pkgdesc="Pobvnc is an application that enables you to help other people behind a firewall."
arch=('i686' 'x86_64')
url="http://www.freemedialab.org/pobvnc/"
license=('GPL')
groups=('Network')
depends=('gtk2' 'x11vnc' 'tigervnc')
makedepends=('cmake')
checkdepends=()
optdepends=('curl')
provides=('pobvnc')
conflicts=('pobvnc')
replaces=()
backup=()
options=( 'strip')
install=
changelog=
#source=($pkgname-$pkgver.tar.gz)
noextract=()
source=(https://github.com/pobfdm/pobvnc/archive/master.zip)
md5sums=('SKIP') #generate with 'makepkg -g'


build() {
  cd "$srcdir/pobvnc-master"
  cmake .
  make
}


package() {
  cd "$srcdir/pobvnc-master"
  make DESTDIR="$pkgdir/" install
}