2017-12-24 22:23:45 +00:00
|
|
|
# Maintainer: David Runge <dave@sleepmap.de>
|
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>
|
|
|
|
# - patch to fix building on ARM
|
|
|
|
|
|
|
|
pkgname=qtractor
|
2018-12-07 18:54:39 +00:00
|
|
|
pkgver=0.9.3
|
2018-12-22 21:10:25 +00:00
|
|
|
pkgrel=2
|
2014-01-03 02:40:56 +00:00
|
|
|
pkgdesc="Audio/MIDI multitrack sequencer"
|
2017-12-24 22:23:45 +00:00
|
|
|
arch=('x86_64')
|
2017-04-26 12:27:11 +00:00
|
|
|
url="http://qtractor.org/"
|
2014-01-03 02:40:56 +00:00
|
|
|
license=('GPL')
|
2018-03-23 00:03:04 +00:00
|
|
|
groups=('pro-audio')
|
2018-09-09 22:44:33 +00:00
|
|
|
depends=('desktop-file-utils' 'hicolor-icon-theme' 'liblo' 'libmad' 'lilv'
|
|
|
|
'qt5-x11extras' 'rubberband' 'suil')
|
2015-12-22 00:31:46 +00:00
|
|
|
makedepends=('qt5-tools' 'ladspa' 'dssi')
|
2014-03-29 16:20:23 +00:00
|
|
|
optdepends=('dssi-vst: win32 VST support')
|
2017-12-24 22:23:45 +00:00
|
|
|
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
|
2014-01-03 02:40:56 +00:00
|
|
|
'04-q_atomic_ftbfs.patch')
|
2018-12-07 18:54:39 +00:00
|
|
|
sha512sums=('fbdb236d043502b5f450af976598fab958209910cd78e5ca735507f30f575c4fb6fb8d0c10b54f0c1f3781a0dfd328bd07ca9c9d370684f94a3efe28f2f02344'
|
2017-12-24 22:23:45 +00:00
|
|
|
'fe0e4d6adcd0eb64c39a194f16c026e6505d5f3b0537b7724ed9060443340559cc12a57665aec3e2a4d4c71ea05b1e575508cae334a8ca3a16543b5fdf55b4bf')
|
2014-01-03 02:40:56 +00:00
|
|
|
|
2014-03-29 16:20:23 +00:00
|
|
|
prepare() {
|
2017-12-24 22:23:45 +00:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2018-05-30 12:52:02 +00:00
|
|
|
autoreconf -vfi
|
2014-01-03 02:40:56 +00:00
|
|
|
patch -p1 -i ../04-q_atomic_ftbfs.patch
|
2014-03-29 16:20:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2017-12-24 22:23:45 +00:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2016-12-10 16:58:49 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libdir=/usr/lib
|
2014-01-03 02:40:56 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2014-03-29 16:20:23 +00:00
|
|
|
package() {
|
2017-12-24 22:23:45 +00:00
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2018-02-07 19:59:06 +00:00
|
|
|
# docs
|
|
|
|
install -t "${pkgdir}/usr/share/doc/${pkgname}" \
|
2018-05-30 12:52:02 +00:00
|
|
|
-vDm 644 {AUTHORS,README,README.VST,TODO}
|
2014-01-03 02:40:56 +00:00
|
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|