mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
638 B
Bash
26 lines
638 B
Bash
pkgname=qsynth
|
|
pkgver=0.5.3
|
|
pkgrel=1
|
|
pkgdesc="Qt GUI for fluidsynth"
|
|
arch=('x86_64')
|
|
url="https://qsynth.sourceforge.io/"
|
|
license=('GPL')
|
|
depends=('fluidsynth' 'qt5-base' 'qt5-x11extras' 'hicolor-icon-theme')
|
|
makedepends=('qt5-tools')
|
|
categories=('multimedia')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
sha1sums=('1feb9987a9c08316137dc1c9ed4d854221c53a75')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
install -t "${pkgdir}/usr/share/doc/${pkgname}" \
|
|
-vDm644 {AUTHORS,ChangeLog,README,TODO,TRANSLATORS}
|
|
}
|