Adding kmid2, MIDI/Karaoke player for KDE4

This commit is contained in:
abveritas 2010-08-08 22:37:10 +00:00
parent d3f3cb692a
commit ab63291c7e
2 changed files with 30 additions and 1 deletions

View File

@ -9,7 +9,7 @@
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=cinstall
pkgver=20100728
pkgver=20100808
pkgrel=1
depends=('kdelibs' 'qt' 'squashfs-tools' 'xz-utils')
pkgdesc="Bundle Creator/Launcher and Package-Manager"

29
kmid2/PKGBUILD Normal file
View File

@ -0,0 +1,29 @@
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kmid2
pkgver=2.3.1
pkgrel=1
pkgdesc="MIDI/Karaoke player for KDE4"
url="http://userbase.kde.org/KMid2"
license="GPL"
arch=('i686' 'x86_64')
depends=('kdelibs' 'alsa-lib' 'drumstick')
makedepends=('cmake' 'automoc4')
optdepends=('fluidsynth' 'timidity++')
conflicts=('kmid-svn')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgver}/kmid-${pkgver}.tar.bz2)
md5sums=('71170acdd7bd82fb224a148d8ba8a9af')
build() {
cd ${srcdir}/kmid-$pkgver
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make || return 1
make DESTDIR=${pkgdir} install || return 1
}