27 lines
935 B
Bash
27 lines
935 B
Bash
# Template file for 'csound'
|
|
pkgname=csound
|
|
version=6.09.1
|
|
revision=2
|
|
build_style=cmake
|
|
configure_args="
|
|
-DLUA_MODULE_INSTALL_DIR=/usr/lib/lua/5.1
|
|
-DDPD_MODULE_INSTALL_DIR=/usr/lib/pd/extra"
|
|
hostmakedepends="python flex"
|
|
makedepends="pd-devel fltk-devel fluidsynth-devel liblo-devel portaudio-devel
|
|
portmidi-devel tk-devel libcurl-devel LuaJIT-devel boost-devel libgomp-devel
|
|
libsndfile-devel"
|
|
depends="pd"
|
|
short_desc="A programming language for sound rendering and signal processing"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="LGPL-3"
|
|
homepage="http://csound.github.io"
|
|
distfiles="https://github.com/$pkgname/$pkgname/archive/$version.tar.gz"
|
|
checksum=e4d2e9870d3b29305c9bc404dc93806e61420a57fc4bc69577676b4934c71777
|
|
nocross=yes
|
|
|
|
post_install() {
|
|
rm -r $DESTDIR/tmp
|
|
vinstall ${FILESDIR}/csound.sh 755 etc/profile.d
|
|
# Avoid conflict with libextractor
|
|
mv ${DESTDIR}/usr/bin/extract ${DESTDIR}/usr/bin/csextract
|
|
}
|