mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Maintainer: David Runge <dave@sleepmap.de>
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
|
# Contributor: speps <speps at aur dot archlinux dot org>
|
|
# Contributor: Philipp Überbacher <hollunder at gmx dot at>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to fix building on ARM
|
|
|
|
pkgname=qtractor
|
|
pkgver=0.9.3
|
|
pkgrel=2
|
|
pkgdesc="Audio/MIDI multitrack sequencer"
|
|
arch=('x86_64')
|
|
url="http://qtractor.org/"
|
|
license=('GPL')
|
|
groups=('pro-audio')
|
|
depends=('desktop-file-utils' 'hicolor-icon-theme' 'liblo' 'libmad' 'lilv'
|
|
'qt5-x11extras' 'rubberband' 'suil')
|
|
makedepends=('qt5-tools' 'ladspa' 'dssi')
|
|
optdepends=('dssi-vst: win32 VST support')
|
|
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
|
|
'04-q_atomic_ftbfs.patch')
|
|
sha512sums=('fbdb236d043502b5f450af976598fab958209910cd78e5ca735507f30f575c4fb6fb8d0c10b54f0c1f3781a0dfd328bd07ca9c9d370684f94a3efe28f2f02344'
|
|
'fe0e4d6adcd0eb64c39a194f16c026e6505d5f3b0537b7724ed9060443340559cc12a57665aec3e2a4d4c71ea05b1e575508cae334a8ca3a16543b5fdf55b4bf')
|
|
|
|
prepare() {
|
|
cd "${pkgname}-${pkgver}"
|
|
autoreconf -vfi
|
|
patch -p1 -i ../04-q_atomic_ftbfs.patch
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
# docs
|
|
install -t "${pkgdir}/usr/share/doc/${pkgname}" \
|
|
-vDm 644 {AUTHORS,README,README.VST,TODO}
|
|
}
|
|
# vim:set ts=2 sw=2 et:
|