blob: fcfc4242ba9c98f2bcf1ffd18a99584e4453ebec (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Llewelyn Trahaearn <WoefulDerelict at GMail dot com>
# Contributor: SpepS <dreamspepser at yahoo dot it>
pkgname=vsxu-git
pkgver=0.6.3.r0.g5404800f
pkgrel=1
pkgdesc="A free to use program that lets you create and perform real-time audio visual presets."
arch=('i686' 'x86_64')
url="http://www.vsxu.com/"
license=('GPL' 'custom')
depends=('desktop-file-utils' 'glew' 'opencv' 'xdg-utils')
makedepends=('alsa-lib' 'cmake' 'git' 'jack' 'pulseaudio')
optdepends=('alsa-lib: ALSA support.'
'jack: JACK support'
'pulseaudio: PulseAudio support')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
source=("${pkgname%-*}::git+https://github.com/vovoid/vsxu.git"
"dependencies::git+https://github.com/vovoid/vsxu-dependencies.git"
"cal3d::git+https://github.com/vovoid/cal3d.git"
"freetype2::git+https://github.com/vovoid/freetype2.git"
"ftgl::git+https://github.com/vovoid/ftgl.git"
"lodepng::git+https://github.com/vovoid/lodepng.git"
"lzham-sdk::git+https://github.com/vovoid/lzham_codec.git"
"lzma-sdk::git+https://github.com/vovoid/LZMA-SDK.git")
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
prepare() {
cd "${pkgname%-*}"
mkdir -p build
git submodule init
git config submodule.dependencies.url "${srcdir}/dependencies"
git config submodule.lib/compression/thirdparty/lzma-sdk.url "${srcdir}/lzma-sdk"
git config submodule.lib/compression/thirdparty/lzham-sdk.url "${srcdir}/lzham-sdk"
git config submodule.lib/engine_graphics/thirdparty/freetype2.url "${srcdir}/freetype2"
git config submodule.lib/engine_graphics/thirdparty/ftgl.url "${srcdir}/ftgl"
git config submodule.lib/engine_graphics/thirdparty/lodepng.url "${srcdir}/lodepng"
git config submodule.plugins/src/mesh.importers/cal3d.url "${srcdir}/cal3d"
git submodule update dependencies lib/compression/thirdparty/lzham-sdk lib/compression/thirdparty/lzma-sdk lib/engine_graphics/thirdparty/freetype2 lib/engine_graphics/thirdparty/ftgl lib/engine_graphics/thirdparty/lodepng plugins/src/mesh.importers/cal3d
}
pkgver() {
cd "${pkgname%-*}"
( set -o pipefail
git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${pkgname%-*}/build"
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DOpenGL_GL_PREFERENCE=GLVND
make
}
package() {
cd "${pkgname%-*}/build"
make DESTDIR="${pkgdir}" install
# License.
install -Dm644 "../COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|