# Maintainer: David Runge # Contributor: Ray Rashif # Contributor: speps # Contributor: Philipp Überbacher # ALARM: Kevin Mihelich # - patch to fix building on ARM # - set -DCONFIG_SSE=OFF pkgname=qtractor pkgver=0.9.23 pkgrel=1 pkgdesc="Audio/MIDI multitrack sequencer" arch=('x86_64') url="https://qtractor.sourceforge.io/" license=('GPL2') groups=('pro-audio') depends=('glibc' 'gcc-libs' 'hicolor-icon-theme' 'libmad' 'libxcb' 'qt6-base' 'zlib') makedepends=('alsa-lib' 'aubio' 'cmake' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg' 'libsamplerate' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'qt6-tools' 'rubberband' 'suil' 'vst3sdk') optdepends=( 'new-session-manager: for session management' 'qt6-wayland: for native wayland support' ) provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host' 'vst3-host') source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz" '04-q_atomic_ftbfs.patch') sha512sums=('fe57cc82d072ed49569441bb9f25f5233c0d7a6e7f0958a84247c8896741f2e4b83067e69d8e7999ccd9e68002b0e6ba4dc084674286952c17d472ae9f507bbd' 'fe0e4d6adcd0eb64c39a194f16c026e6505d5f3b0537b7724ed9060443340559cc12a57665aec3e2a4d4c71ea05b1e575508cae334a8ca3a16543b5fdf55b4bf') b2sums=('6ccf22ccc21ad36aecff63a16de9e3bb2ae19ba6fd7475432c3cd1e37ce2468f837a68c160ceec0f9c7ec9931e1fc1614c3a84cd0dd34078d1e227868338c021' 'ab86331b8cdc583cbe740c23e2a47280205cd20e80f23de1d8e189d6f2ea9a651caad14188656e5f85357cb444f9a51544871b2603ad54748db555ab6a9f4124') prepare() { cd "${pkgname}-${pkgver}" patch -p1 -i ../04-q_atomic_ftbfs.patch } build() { cd "${pkgname}-${pkgver}" cmake -DCMAKE_INSTALL_PREFIX='/usr' \ -DCMAKE_BUILD_TYPE='None' \ -DCONFIG_QT6=ON \ -DCONFIG_SSE=OFF \ -Wno-dev \ -B build \ -S . make VERBOSE=1 -C build } package() { depends+=('libasound.so' 'libaubio.so' 'libjack.so' 'liblilv-0.so' 'liblo.so' 'libogg.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so' 'libsuil-0.so' 'libvorbisenc.so' 'libvorbisfile.so' 'libvorbis.so' ) cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install -C build # docs install -vDm 644 {AUTHORS,README,README.VST,TODO} \ -t "${pkgdir}/usr/share/doc/${pkgname}" }