Date: Tuesday, February 6, 2018 @ 21:40:52 Author: dvzrv Revision: 289627
archrelease: copy trunk to community-x86_64 Added: qmidiroute/repos/community-x86_64/ qmidiroute/repos/community-x86_64/PKGBUILD (from rev 289626, qmidiroute/trunk/PKGBUILD) ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Copied: qmidiroute/repos/community-x86_64/PKGBUILD (from rev 289626, qmidiroute/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-02-06 21:40:52 UTC (rev 289627) @@ -0,0 +1,34 @@ +# Maintainer: David Runge <d...@sleepmap.de> +# Contributor: David Adler <david dot jo dot adler at gmail dot com> +# Contributor: Albert Graef <aggraef at gmail dot com> +# Contributor: Arch Linux Pro Audio <d...@archaudio.org> +# Contributor: svoufff <svoufff at gmail dot com> +# Contributor: Shinlun Hsieh <yngwi...@yahoo.com.tw> +pkgname=qmidiroute +pkgver=0.4.0 +pkgrel=4 +pkgdesc="A MIDI router and filter utility" +arch=('x86_64') +url="http://alsamodular.sourceforge.net/" +license=('GPL') +depends=('alsa-lib' 'hicolor-icon-theme' 'qt5-base') +makedepends=('qt5-tools') +source=("https://downloads.sourceforge.net/alsamodular/${pkgname}-${pkgver}.tar.bz2") +sha512sums=('b3b5ded66c0e226848a3181d67f61ea9e4e76c253400dac63592e4f462f4cf06760b3f2d24a33bbc836f4fe29950a4d702adc048ad80c9b6d673ade8c1a88342') + +build() { + cd "${pkgname}-${pkgver}" + ./configure --prefix=/usr --enable-qt5 + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + # docs + install -t "${pkgdir}/usr/share/doc/${pkgname}" \ + -vDm644 {ChangeLog,NEWS,README,TODO} +} + +# vim:set ts=2 sw=2 et: +