desktop/qmidictl/PKGBUILD

26 lines
633 B
Bash

pkgname=qmidictl
pkgver=0.4.0
pkgrel=1
pkgdesc="A MIDI remote controller application that sends MIDI data over the network, using UDP/IP multicast."
arch=('x86_64')
url="http://qmidictl.sourceforge.net/"
license=('GPL')
depends=('qt5-base' 'qt5-tools' 'hicolor-icon-theme')
categories=('multimedia' 'network')
install="$pkgname.install"
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
sha1sums=('8dac9eb0afc91b622c0995b60781793928f0bd5b')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}