blob: fb902ba5ee495d90f9a4da924058aa46dd8184d4 (
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
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 165496 2012-08-21 08:58:19Z eric $
# Maintainer:
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
pkgname=kradio
pkgver=4.0.6
pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
license=('GPL2')
pkgdesc="A comfortable KDE internet and AM/FM radio application"
url="http://kradio.sourceforge.net/"
depends=('kdebase-runtime' 'libmms' 'ffmpeg')
[ "$CARCH" != "mips64el" ] && depends+=('lirc-utils')
makedepends=('automoc4' 'cmake' 'boost')
install=$pkgname.install
source=("http://downloads.sourceforge.net/$pkgname/kradio4-$pkgver.tar.bz2"{,.asc})
md5sums=('ee9214156465e0416bb369f78b4a5eae'
'f43706e63d24788f2278bada7b10cc6f')
build() {
cd "$srcdir"
mkdir build
cd build
cmake ../${pkgname}4-$pkgver \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd "$srcdir/build"
make DESTDIR="$pkgdir" install
}
|