PKGBUILDs/community/supercollider/PKGBUILD

63 lines
2.3 KiB
Bash
Raw Normal View History

2017-12-24 22:26:34 +00:00
# Maintainer: David Runge <dave@sleepmap.de>
# Contributor: speps <speps at aur dot archlinux dot org>
2013-11-29 21:55:30 +00:00
# Contributor: osc <farid at archlinux-br.org>
2013-11-05 02:39:32 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - added recommended cmake defines (last two lines)
2013-11-05 02:39:32 +00:00
_name=SuperCollider
pkgname=supercollider
2018-04-09 23:37:49 +00:00
pkgver=3.9.3
2018-10-06 21:58:32 +00:00
pkgrel=5
2018-06-08 05:06:34 +00:00
pkgdesc="Environment and programming language for real time audio synthesis and algorithmic composition"
2017-12-24 22:26:34 +00:00
arch=('x86_64')
url="https://supercollider.github.io"
2013-11-05 02:39:32 +00:00
license=('GPL3')
2018-06-08 05:06:34 +00:00
groups=('pro-audio')
2018-10-06 21:58:32 +00:00
depends=('boost-libs' 'desktop-file-utils' 'fftw' 'jack' 'qt5-webkit' 'yaml-cpp')
2017-12-24 22:26:34 +00:00
makedepends=('boost' 'cmake' 'emacs' 'qt5-tools')
2013-11-05 02:39:32 +00:00
optdepends=('emacs: emacs interface'
2018-03-21 23:01:01 +00:00
'gedit: gedit interface'
'sc3-plugins: additional extension plugins for scsynth')
2018-06-08 05:06:34 +00:00
source=("https://github.com/${pkgname}/${pkgname}/releases/download/Version-${pkgver}/${_name}-${pkgver}-Source-linux.tar.bz2"
'boost-1.67.patch')
2017-12-24 22:26:34 +00:00
install="${pkgname}.install"
2018-06-08 05:06:34 +00:00
sha512sums=('5b0c29941907d5ca45c1676e34184664c03891051bba0ee50d9e8311400824054de7b6daba6d29fd875ff38f42ee9654504ea2f0b5bf0a36ae9605e6a79a0841'
'9980d77802f18fd56d2a13f24f070e81768d9111b2cc63e479a0e9b405a04aec28bc523e5d36aab0462af6a3831d64598470cdc6c3266431e2ca64aa427a6bf2')
2015-12-10 04:56:11 +00:00
prepare() {
2018-03-09 00:33:23 +00:00
mv -v "${_name}-Source" "${pkgname}-${pkgver}"
cd "${pkgname}-${pkgver}"
2018-06-08 05:06:34 +00:00
patch -Np1 -i ../boost-1.67.patch
2018-09-21 19:05:55 +00:00
# make sure the system boost headers are used
2018-10-06 21:58:32 +00:00
# https://github.com/supercollider/supercollider/issues/4096
2018-09-21 19:05:55 +00:00
rm -r external_libraries/boost
2018-10-06 21:58:32 +00:00
# fixing fundamental mathmatical problems:
# https://github.com/supercollider/supercollider/issues/4116
sed -e 's/-ffast-math/-fno-math-errno -fno-signaling-nans/' \
-i CMakeLists.txt
# requires out-of-tree build
mkdir -v bld
2015-12-10 04:56:11 +00:00
}
2013-11-05 02:39:32 +00:00
build() {
2018-03-09 00:33:23 +00:00
cd "${pkgname}-${pkgver}/bld"
2013-11-05 02:39:32 +00:00
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIBSCSYNTH=ON \
2018-03-09 00:33:23 +00:00
-DFORTIFY=ON \
2018-03-09 19:10:34 +00:00
-DSYSTEM_BOOST=ON \
-DSYSTEM_YAMLCPP=ON \
2017-12-24 22:26:34 +00:00
-DSC_VIM=OFF \
-DSSE=OFF -DSSE2=OFF -DSUPERNOVA=OFF -DNOVA_SIMD=ON -DNATIVE=OFF \
2016-10-28 23:29:35 +00:00
-DCMAKE_C_FLAGS="${CFLAGS}"
2013-11-05 02:39:32 +00:00
make
}
package() {
2018-03-09 00:33:23 +00:00
cd "${pkgname}-${pkgver}/bld"
2017-12-24 22:26:34 +00:00
make DESTDIR="${pkgdir}" install
2018-03-09 00:33:23 +00:00
install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
2018-03-25 15:37:06 +00:00
-vDm 644 ../{AUTHORS,{CHANGELOG,README,README_LINUX}.md}
2013-11-05 02:39:32 +00:00
}