summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 29ab2cb093886509606519ade7b24881ecbfd2d9 (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
# Maintainer: Jose Riha <jose1711 at gmail dot com>

pkgname=ihu-git
_pkgname=ihu
pkgver=r15.e11cccd
pkgrel=1
pkgdesc='I Hear U VoIP application that creates an audio stream between two computers'
arch=('armv6h' 'armv7h' 'i686' 'x86_64')
url="https://github.com/jose1711/ihu"
license=('GPL-2')
depends=('qt4' 'speex' 'soundtouch' 'jack')
makedepends=('git')
provides=('ihu')
conflicts=('ihu')
source=("git://github.com/jose1711/ihu.git")

sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}


build() {
  cd "${srcdir}/${_pkgname}"
  ./configure --prefix=/usr
}

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