summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b33528ee7c0ba16257cd074b436f66c02154f239 (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
# Maintainer:  VirtualTam <virtualtam@flibidi.net>
pkgname=openav-luppp-git
pkgver=release.1.0.1.8.g43aecd2
pkgrel=1
pkgdesc="Luppp is a live performance tool, created by OpenAV productions"
arch=('i686' 'x86_64')
url="http://openavproductions.com/luppp/"
license=('GPL3')
depends=('cairo' 'jack2' 'liblo' 'libsamplerate' 'libsndfile' 'ntk-git')
makedepends=('git')
provides=('openav-luppp')
_gitname="openAV-Luppp"
source=(git://github.com/harryhaaren/${_gitname}.git)
sha256sums=(SKIP)

pkgver() {
  cd ${_gitname}
  git describe --always | sed 's|-|.|g'
}

build(){
  cd ${_gitname}
  cmake ./ -DCMAKE_INSTALL_PREFIX="/usr" -DRELEASE_BUILD=1
  make
}

package() {
  cd ${_gitname}
  make DESTDIR=${pkgdir} install
}