summaryrefslogtreecommitdiff
path: root/community/kradio/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2013-02-09 10:32:20 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2013-02-09 10:32:20 -0300
commit6cc893589a6bd208f2b7711f985e17df7a6df816 (patch)
treec41cb07e4e88c4eff5bc05e44b86b860f96654b8 /community/kradio/PKGBUILD
parent5995e8be41750a8ac397ac358f5c2bedca3a4d1e (diff)
parentf0ab416208be17c176b9430a3537f05b5c653aec (diff)
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'community/kradio/PKGBUILD')
-rw-r--r--community/kradio/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/community/kradio/PKGBUILD b/community/kradio/PKGBUILD
new file mode 100644
index 000000000..66a5f20dc
--- /dev/null
+++ b/community/kradio/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 83293 2013-01-28 23:02:36Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Tobias Powalowski <tpowa@archlinux.org>
+
+pkgname=kradio
+pkgver=4.0.7
+pkgrel=1
+arch=('x86_64' 'i686')
+license=('GPL2')
+pkgdesc='Comfortable KDE internet and AM/FM radio application'
+url='http://kradio.sourceforge.net/'
+depends=('kdebase-runtime' 'lirc-utils' 'libmms' 'ffmpeg')
+makedepends=('automoc4' 'cmake' 'boost')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/$pkgname/kradio4-$pkgver.tar.bz2"{,.asc})
+sha256sums=('53d1a706f08cfd5a405142cf34cf9c0b03397b03961936651dfae7206003959c'
+ 'cc6e801e10dbb7971cd09f2083d9fad0dc20ffc59ce3301486a985b8718d0c97')
+
+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
+}
+
+# vim:set ts=2 sw=2 et: