summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 313e3531c12c3cbee4b9f1bcdbc3e7c7e14bc9d2 (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
# Submitter:   Anton Yermalovich <zuzu@bk.ru>
# Maintainer:  Yousef Amar <yousef@amar.io>
# Contributor: zwergnase <zwergnase@posteo.de>

pkgname=sunvox
pkgver=1.9.2
pkgrel=2
pkgdesc="Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker)."
arch=('i686' 'x86_64')
url="http://warmplace.ru/soft/sunvox/"
license=(custom)
groups=()
depends=(
	'libx11'
	'glibc'
	'gcc-libs'
	'alsa-lib'
	'sdl'
	'libxcb'
	'libxau'
	'libxdmcp'
)
makedepends=('unzip')
source=(http://warmplace.ru/soft/sunvox/$pkgname-$pkgver.zip)
md5sums=('3e539805243d0596d3ae21d3c6c81794')

package() {
	install -dm755 "${pkgdir}/opt/${pkgname}"
	install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"

	if [ "$CARCH" = "x86_64" ]; then
		install -Dm755 "${srcdir}/sunvox/sunvox/linux_x86_64/sunvox" "${pkgdir}/usr/bin/sunvox"
	else
		install -Dm755 "${srcdir}/sunvox/sunvox/linux_x86/sunvox" "${pkgdir}/usr/bin/sunvox"
		install -Dm755 "${srcdir}/sunvox/sunvox/linux_x86/sunvox_lofi" "${pkgdir}/usr/bin/sunvox_lofi"
		install -Dm755 "${srcdir}/sunvox/sunvox/linux_x86/sunvox_no_simd" "${pkgdir}/usr/bin/sunvox_no_simd"
	fi

	cp -a "${srcdir}/sunvox/examples" "${pkgdir}/opt/${pkgname}/examples"
	cp -a "${srcdir}/sunvox/instruments" "${pkgdir}/opt/${pkgname}/instruments"
	cp -a "${srcdir}/sunvox/effects" "${pkgdir}/opt/${pkgname}/effects"
	install -Dm644 "${srcdir}/sunvox/docs/license.txt"  "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}