mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
686 B
Bash
29 lines
686 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer (x86_64): Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=qsynth
|
|
pkgver=0.3.8
|
|
pkgrel=1
|
|
pkgdesc="Qt GUI for fluidsynth"
|
|
arch=('x86_64')
|
|
url="http://qsynth.sourceforge.net/qsynth-index.html"
|
|
license=('GPL')
|
|
depends=('fluidsynth' 'qt' 'portaudio')
|
|
categories=('multimedia')
|
|
options=('!makeflags')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('affdd9ddff4798b1d3dae3c99b57bc5a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|