summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 38b6b9f6495ed05fb297ea2df31e5e84472bc97d (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
39
40
41
42
43
44
45
46
# Maintainer: Lukas Sabota <lukas _at_ lwsabota _dot_ com>
# Contributer: Lukas Sabota <lukas _at_ lwsabota _dot_ com>
pkgname=papu-vst-git
_gitbase=PAPU
pkgver=r24.00acb26
pkgrel=1
pkgdesc="Emulates Nintendo Gameboy PAPU audio chip as a VST"
arch=('i686' 'x86_64')
url="http://socalabs.com/"
license=('LGPL')
groups=('socalabs-vst-suite')
depends=('mesa')
makedepends=('git')
source=('PAPU::git+https://github.com/FigBug/PAPU.git'
		'dRowAudio::git+https://github.com/FigBug/drowaudio.git#commit=3a1e6eb75681b166c055c501a2ed4a8df8a44df0'
		'slCommon::git+https://github.com/FigBug/slCommon.git#commit=b49d31c4f2f131506fe5ac53f2ac6e47b3ee109b'
		'JUCE::git+https://github.com/WeAreROLI/JUCE.git#branch=develop')
# Note: This package requires features in the develop branch of JUCE
# This package can likely be moved to depend on the juce AUR package
# after an upstream JUCE release.
# FYI: This can be accomplished by symlinking /opt/JUCE to $srcdir/JUCE
# in the future.
md5sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')

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

prepare() {
	cd "$srcdir/$_gitbase"
	# Workaround for SSH-only configured submodule remotes
	cd modules
	rm -rf dRowAudio slCommon
	ln -s ../../dRowAudio ./
	ln -s ../../slCommon ./
}

build() {
	cd "$srcdir/$_gitbase/plugin/Builds/LinuxMakefile"
	make
}

package() {
	install -D -m644 "$srcdir/$_gitbase/plugin/Builds/LinuxMakefile/build/$_gitbase.so" "$pkgdir/usr/lib/vst/$_gitbase.so"
}