blob: 720c03261a4223e1486a4506b955a532102c34b0 (
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
|
# Maintainer: Abdó Roig-Maranges <abdo.roig@gmail.com>
pkgname=extempore-git
pkgver=0.8.7.r35.g78c44413
pkgrel=2
pkgdesc="A cyber-physical programming environment for live coding"
arch=('i686' 'x86_64')
url="http://extempore.moso.com.au"
license=('BSD')
depends=('mesa' 'pcre' 'alsa-lib')
makedepends=('git' 'cmake' 'gcc' 'perl')
optdepends=('jack')
provides=('extempore')
conflicts=('extempore')
source=("git+https://github.com/digego/extempore.git")
sha256sums=('SKIP')
pkgver() {
git --git-dir="${srcdir}/extempore/.git" describe --long --tags | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
mkdir -p "${srcdir}/build"
cd "${srcdir}/build"
# NOTE: set ASSETS to OFF you you don't want to download ~500MB of assets
cmake -DCMAKE_INSTALL_PREFIX=/opt/${pkgname} \
-DJACK=ON \
-DBUILD_DEPS=ON \
-DPACKAGE=ON \
-DASSETS=ON \
../extempore
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}/" install
# NOTE: emacs extempore-mode was moved, left here because someone upgrading might get the message
install -D "${srcdir}/extempore/extras/extempore.el" "${pkgdir}/usr/share/emacs/site-lisp/extempore/extempore.el"
# NOTE: The vim file interferes with vim, overriding global bindings.
# install -D "${srcdir}/extempore/extras/extempore.vim" "${pkgdir}/usr/share/vim/vimfiles/plugin/extempore.vim"
install -d "${pkgdir}/usr/bin"
ln -s "/opt/${pkgname}/extempore" "${pkgdir}/usr/bin/extempore"
}
# vim:set ts=2 sw=2 et:
|