summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 373ce143905956521faa2d5293ae30030ace2269 (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
# From the unofficial fork of Borderlands, Frontieres, by Linux MAO on GITLAB:
# Maintainer: loriant <spaceflorent at aol.com>

_pkgname=Frontieres
pkgname="frontieres-git"
pkgver=0.4.0
pkgrel=1
pkgdesc="An interactive granular sampler forked from the Bordelands Granular project"
arch=('any')
url="https://github.com/linuxmao-org/Frontieres"
license=("GPL")
depends=('qt5-tools' 'glu' 'liblo' 'libsoxr'
         'alsa-lib' 'libglvnd' 'libpulse')
makedepends=('git' 'cmake')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("git+https://github.com/linuxmao-org/Frontieres.git")
md5sums=('SKIP')

build() {
  cd "${srcdir}/${_pkgname}"
  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

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