mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
720 B
Bash
29 lines
720 B
Bash
# Moved from CCR
|
|
# Contributor: ulritx <eneko.sarasola@gmail.com>
|
|
|
|
pkgname=qmidinet
|
|
pkgver=0.1.2
|
|
pkgrel=1
|
|
pkgdesc="A MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer) over the network, using UDP/IP multicast"
|
|
arch=('x86_64')
|
|
url="http://qmidinet.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('qt' 'jack' 'hicolor-icon-theme')
|
|
categories=('multimedia')
|
|
install="$pkgname.install"
|
|
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('3536df97cb5f786c075c90cd8cfc5848')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|