summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fd015595acabbf08d6a7957739514039f6fd4f2d (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
# Maintainer: ELmoussaoui Bilal <bil.elmoussaoui@gmail.com>

pkgname=gradio
_gitname=gradio
pkgver=5.0.0.beta2
_pkgver=5.0.0-beta2
pkgrel=1
pkgdesc='A GTK3 app for finding and listening to internet radio stations'
arch=('i686' 'x86_64')
license=('GPL3')
url="https://github.com/haecker-felix/gradio"
depends=('desktop-file-utils' 'gstreamer' 'gst-plugins-ugly'  
'json-glib' 'libgee' 
'libsoup')
makedepends=('unzip' 'gnome-common' 'intltool' 'itstool' 'vala' 'yelp-tools' 'cmake')
options=('!emptydirs')
install=gradio.install
source=("https://github.com/haecker-felix/${_gitname}/archive/v${_pkgver}.zip")
md5sums=('b3da8e5c5abdcb44cfefd505757a30fe')
conflicts=('gradio-git' 'gradio-bin')
provides=("gradio=$_pkgver")

build() {
	cd "$srcdir/gradio-${_pkgver}"
	./autogen.sh
	make
}

package() {
	cd "$srcdir/gradio-${_pkgver}"
	make DESTDIR="${pkgdir}" install
}