mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
734 B
Bash
26 lines
734 B
Bash
|
# $Id: PKGBUILD 41009 2009-06-02 13:01:08Z tpowa $
|
||
|
# Maintainer : Tobias Powalowski <tpowa@archlinux.org>
|
||
|
|
||
|
pkgname=kradio
|
||
|
pkgver=4.0.0
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL2')
|
||
|
pkgdesc="KRadio is a comfortable KDE radio application"
|
||
|
url="http://kradio.sourceforge.net/"
|
||
|
depends=('lame' 'kdelibs' 'libsndfile' 'lirc-utils' 'libmms')
|
||
|
makedepends=('pkgconfig' 'automoc4')
|
||
|
source=(http://dl.sourceforge.net/sourceforge/kradio/kradio4-$pkgver.tar.bz2)
|
||
|
options=(!libtool)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ../${pkgname}4-$pkgver -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|
||
|
md5sums=('fe19f793e272bdac1081a880557b5cd2')
|