Date: Thursday, February 22, 2018 @ 00:44:46 Author: dvzrv Revision: 296858
archrelease: copy trunk to community-testing-x86_64 Added: qmidinet/repos/community-testing-x86_64/ qmidinet/repos/community-testing-x86_64/PKGBUILD (from rev 296857, qmidinet/trunk/PKGBUILD) ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Copied: qmidinet/repos/community-testing-x86_64/PKGBUILD (from rev 296857, qmidinet/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2018-02-22 00:44:46 UTC (rev 296858) @@ -0,0 +1,26 @@ +# Maintainer: David Runge <d...@sleepmap.de> +pkgname=qmidinet +pkgver=0.4.3 +pkgrel=2 +pkgdesc="A MIDI Network Gateway via UDP/IP Multicast" +arch=('x86_64') +url="http://qmidinet.sourceforge.net/" +license=('GPL2') +groups=('pro-audio') +depends=('alsa-lib' 'hicolor-icon-theme' 'jack' 'qt5-base') +makedepends=('qt5-tools') +source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz") +sha512sums=('17492e07cbc9a40d9dae0bb4dbe0f62edbd9071de8462a728168552a8822040f305a7a921304b4adb3c13f1baf985efe609ff57c18e61e9a76261835fec614b3') + +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} +}