25 lines
691 B
Bash
25 lines
691 B
Bash
|
# Template file for 'sc3-plugins'
|
||
|
pkgname=sc3-plugins
|
||
|
version=3.8.0
|
||
|
revision=1
|
||
|
only_for_archs="i686 x86_64"
|
||
|
build_style=cmake
|
||
|
configure_args="-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DSC_PATH=/usr/include/SuperCollider \
|
||
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
-DSUPERNOVA=ON"
|
||
|
hostmakedepends="pkg-config git"
|
||
|
makedepends="supercollider fftw-devel"
|
||
|
depends="supercollider"
|
||
|
short_desc="Extension plugins for the SuperCollider3 audio synthesis server"
|
||
|
maintainer="Jarbowski <jarbowski@cock.lu>"
|
||
|
license="GPL-2"
|
||
|
homepage="https://github.com/supercollider/sc3-plugins"
|
||
|
wrksrc=${pkgname}
|
||
|
|
||
|
do_fetch() {
|
||
|
git clone ${homepage}
|
||
|
cd ${wrksrc}
|
||
|
git checkout Version-${version}
|
||
|
git submodule update --init --recursive
|
||
|
}
|