Add Qmidinet

This commit is contained in:
Manuel 2011-08-07 11:36:07 +00:00
parent e8606779bc
commit f33aafb1ee
2 changed files with 39 additions and 0 deletions

27
qmidinet/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Moved from CCR
# Contributor: ulritx <eneko.sarasola@gmail.com>
pkgname=qmidinet
pkgver=0.1.1
pkgrel=1
pkgdesc="A MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer) over the network, using UDP/IP multicast"
arch=(i686 x86_64)
url="http://qmidinet.sourceforge.net/"
license=('GPL')
depends=('qt' 'jack' 'hicolor-icon-theme')
install="$pkgname.install"
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('4f132915199534f88fd490650c919775')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}

12
qmidinet/qmidinet.install Normal file
View File

@ -0,0 +1,12 @@
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
}
post_upgrade() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
post_remove() {
post_install
}