PKGBUILDs/community/qtractor/PKGBUILD

52 lines
1.9 KiB
Bash
Raw Normal View History

2019-11-09 15:22:12 +00:00
# Maintainer: David Runge <dvzrv@archlinux.org>
2018-03-23 00:03:04 +00:00
# Contributor: Ray Rashif <schiv@archlinux.org>
2017-12-24 22:23:45 +00:00
# Contributor: speps <speps at aur dot archlinux dot org>
2014-01-03 02:40:56 +00:00
# Contributor: Philipp Überbacher <hollunder at gmx dot at>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2020-09-15 21:52:50 +00:00
# - set -DCONFIG_SSE=OFF
2014-01-03 02:40:56 +00:00
pkgname=qtractor
2021-07-11 16:57:15 +00:00
pkgver=0.9.23
2020-06-29 12:40:17 +00:00
pkgrel=1
2014-01-03 02:40:56 +00:00
pkgdesc="Audio/MIDI multitrack sequencer"
2017-12-24 22:23:45 +00:00
arch=('x86_64')
2020-09-15 21:52:50 +00:00
url="https://qtractor.sourceforge.io/"
2019-10-13 22:03:31 +00:00
license=('GPL2')
2018-03-23 00:03:04 +00:00
groups=('pro-audio')
2021-03-19 12:32:06 +00:00
depends=('glibc' 'gcc-libs' 'hicolor-icon-theme' 'libmad' 'libxcb' 'qt6-base' 'zlib')
2020-09-15 21:52:50 +00:00
makedepends=('alsa-lib' 'aubio' 'cmake' 'dssi' 'jack' 'ladspa' 'liblo' 'libogg'
2021-03-19 12:32:06 +00:00
'libsamplerate' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'qt6-tools' 'rubberband'
2020-10-31 16:23:17 +00:00
'suil' 'vst3sdk')
2021-03-19 12:32:06 +00:00
optdepends=(
'new-session-manager: for session management'
'qt6-wayland: for native wayland support'
)
2020-10-31 16:23:17 +00:00
provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host' 'vst3-host')
2021-07-11 17:29:03 +00:00
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('fe57cc82d072ed49569441bb9f25f5233c0d7a6e7f0958a84247c8896741f2e4b83067e69d8e7999ccd9e68002b0e6ba4dc084674286952c17d472ae9f507bbd')
b2sums=('6ccf22ccc21ad36aecff63a16de9e3bb2ae19ba6fd7475432c3cd1e37ce2468f837a68c160ceec0f9c7ec9931e1fc1614c3a84cd0dd34078d1e227868338c021')
2014-03-29 16:20:23 +00:00
build() {
2017-12-24 22:23:45 +00:00
cd "${pkgname}-${pkgver}"
2020-09-15 21:52:50 +00:00
cmake -DCMAKE_INSTALL_PREFIX='/usr' \
-DCMAKE_BUILD_TYPE='None' \
2021-05-14 18:46:54 +00:00
-DCONFIG_QT6=ON \
2020-09-15 21:52:50 +00:00
-DCONFIG_SSE=OFF \
-Wno-dev \
-B build \
-S .
make VERBOSE=1 -C build
2014-01-03 02:40:56 +00:00
}
2014-03-29 16:20:23 +00:00
package() {
2020-03-28 19:54:07 +00:00
depends+=('libasound.so' 'libaubio.so' 'libjack.so' 'liblilv-0.so' 'liblo.so'
2020-06-29 12:40:17 +00:00
'libogg.so' 'librubberband.so' 'libsamplerate.so' 'libsndfile.so'
'libsuil-0.so' 'libvorbisenc.so' 'libvorbisfile.so' 'libvorbis.so' )
2017-12-24 22:23:45 +00:00
cd "${pkgname}-${pkgver}"
2020-09-15 21:52:50 +00:00
make DESTDIR="${pkgdir}" install -C build
2018-02-07 19:59:06 +00:00
# docs
2020-09-15 21:52:50 +00:00
install -vDm 644 {AUTHORS,README,README.VST,TODO} \
-t "${pkgdir}/usr/share/doc/${pkgname}"
2014-01-03 02:40:56 +00:00
}