mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
24 lines
568 B
Bash
24 lines
568 B
Bash
pkgname=qsynth
|
|
pkgver=0.4.1
|
|
pkgrel=1
|
|
pkgdesc="Qt GUI for fluidsynth"
|
|
arch=('x86_64')
|
|
url="http://qsynth.sourceforge.net/qsynth-index.html"
|
|
license=('GPL')
|
|
depends=('fluidsynth' 'qt5-base' 'qt5-x11extras')
|
|
makedepends=('qt5-tools')
|
|
categories=('multimedia')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('7b394dab4182136cdd9dd6e314b9976582f0113c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|