summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fda8b1c41df192d58c983a5511383965dfd5b351 (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
# Maintainer: Thomas Weißschuh <thomas t-8ch de>

pkgname=evd-git
pkgver=20140125
pkgrel=1
pkgdesc="eventdance, a peer-to-peer inter-process communication library."
arch=(i686 x86_64)
url='https://github.com/elima/eventdance'
license=('LGPL')
depends=(json-glib libsoup)
optdepends=('gtkdocise: generating api docs')
source=('git+https://github.com/elima/EventDance')
provides=('evd')
makedepends=('git')
sha256sums=('SKIP')


build() {
  cd "${srcdir}"/EventDance

  ./autogen.sh --prefix=/usr
  make
}

package() {
  cd "${srcdir}"/EventDance
  make DESTDIR="${pkgdir}/" install
}

pkgver() {
  date '+%Y%m%d'
}