summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 21cafac54dd999ac908e6df8d09fdafa7a5040a1 (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
34
35
36
37
38
39
# Maintainer: Luna Jernberg <droidbittin@gmail.com>


pkgname=gtk-radio
pkgver=552.0
pkgrel=1
pkgdesc="Easily find live radio programs based on geographical location of radio broadcasters on the Internet"
arch=('x86_64')
url="https://www.gtkradio.org/"
license=(GPL3)
depends=('libchamplain' 'gst-plugins-base' 'gst-plugins-bad')
makedepends=('intltool' 'itstool')
conflicts=('gnome-radio')
source=("http://www.gtkradio.org/src/gtk-radio-$pkgver.tar.xz")
sha256sums=('95f16752049bf9c1ecbc5054d8ad6d851dbcb2b8e6f5e12d1e25ae6735913526')


prepare() {
  cd $pkgname-$pkgver

 }

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

check(){
  cd $pkgname-$pkgver
  make
}

package(){
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}