blob: a22ca18640b414fe7b77a60a8236432779a8362f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: BrainDamage <braindamage springlobby.info>
pkgname=raveloxmidi
pkgver=0.10.3
pkgrel=1
pkgdesc='A simple proxy to send and receive RTP midi data through network'
arch=('x86_64' 'armv7l' 'aarch64')
license=('GPL3')
url='https://github.com/ravelox/pimidi'
depends=('avahi')
makedepends=('automake' 'autoconf')
source=("https://github.com/ravelox/pimidi/archive/v${pkgver}.tar.gz")
sha256sums=('7ba3c766f74ee8b15e9bcabc30af3587c5d990788a7574af7ff30e806bc17e01')
build() {
cd "${srcdir}/pimidi-${pkgver}/${pkgname}"
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/pimidi-${pkgver}/${pkgname}"
make DESTDIR="${pkgdir}" install
}
|