diff options
author | root <root@rshg054.dnsready.net> | 2012-06-06 00:01:34 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-06 00:01:34 +0000 |
commit | 91734dee3e97f809fb0fcf7add40f7af90fccd87 (patch) | |
tree | 5ea3c4fcb1f01ef60e6f841415bd5f7ab78e32f0 /staging/kradio | |
parent | 67db4cf68dbdb364c4dee1599294d7701f3c3b0a (diff) |
Wed Jun 6 00:01:34 UTC 2012
Diffstat (limited to 'staging/kradio')
-rw-r--r-- | staging/kradio/PKGBUILD | 32 | ||||
-rw-r--r-- | staging/kradio/kradio.install | 11 |
2 files changed, 43 insertions, 0 deletions
diff --git a/staging/kradio/PKGBUILD b/staging/kradio/PKGBUILD new file mode 100644 index 000000000..2071f88e9 --- /dev/null +++ b/staging/kradio/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 160707 2012-06-04 07:57:09Z eric $ +# Maintainer: +# Contributor: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=kradio +pkgver=4.0.4 +pkgrel=2 +arch=('i686' 'x86_64') +license=('GPL2') +pkgdesc="A comfortable KDE internet and AM/FM radio application" +url="http://kradio.sourceforge.net/" +depends=('kdebase-runtime' 'lirc-utils' 'libmms' 'ffmpeg') +makedepends=('automoc4' 'cmake') +install=$pkgname.install +source=("http://downloads.sourceforge.net/$pkgname/kradio4-$pkgver.tar.bz2"{,.asc}) +md5sums=('4b5495a4f1dda21f7201bc8db0d4f95e' + '51c6d4ec0047d2df595b458bde285012') + +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 +} diff --git a/staging/kradio/kradio.install b/staging/kradio/kradio.install new file mode 100644 index 000000000..460e85d7f --- /dev/null +++ b/staging/kradio/kradio.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |