Arch packages provide everything there is from upstream, including so-called
devel files. So there shouldn't be any problem. I notice the one at AUR is
outdated, so use the following buildscript if you're worried your install
wasn't optimal:
pkgname=kmidimon
pkgver=0.7.1
pkgrel=1
pkgdesc="KDE MIDI Metronome using the ALSA Sequencer"
url="http://sourceforge.net/projects/kmetronome/"
arch=(i686 x86_64)
license="GPL"
depends=('kdelibs')
source=(http://downloads.sourceforge.net/kmetronome/$pkgname-$pkgver.tar.bz2
)
build() {
cd "$srcdir/$pkgname-$pkgver"
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make || return 1
make DESTDIR="$pkgdir/" install
}
md5sums=('065e5f3640a68dca20cb21f8d4a039c5')