summaryrefslogtreecommitdiff
path: root/pcr/gradio
diff options
context:
space:
mode:
authorFreemor <freemor@freemor.ca>2018-09-11 11:41:37 -0300
committerFreemor <freemor@freemor.ca>2018-09-11 11:41:37 -0300
commit13bb83b3029a5a0905bd1053c95f91364f1a34cc (patch)
tree26869136a8e334cc9fddf9cfd3b41c276092fb6d /pcr/gradio
parent9a9d0a57d721127c43bea01a96f5ed95b64275b8 (diff)
Add [gradio] for pkg request #1883
- x32 build segfaults.... debugging... - will build armv7h once issue with librechroot is figured out.
Diffstat (limited to 'pcr/gradio')
-rw-r--r--pcr/gradio/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/gradio/PKGBUILD b/pcr/gradio/PKGBUILD
new file mode 100644
index 000000000..a28a6ca27
--- /dev/null
+++ b/pcr/gradio/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer (AUR): ELmoussaoui Bilal <bil.elmoussaoui@gmail.com>
+# Maaintainer: Freemor <freemor@freemor.ca>
+
+pkgname=gradio
+_pkgname=Gradio
+pkgver=7.1
+pkgrel=1
+pkgdesc='A GTK3 app for finding and listening to internet radio stations'
+arch=('i686' 'x86_64' 'armv7h')
+license=('GPL3')
+url="https://github.com/haecker-felix/gradio"
+depends=('desktop-file-utils' 'gstreamer' 'gst-plugins-ugly' 'gst-plugins-bad'
+ 'gtk3' 'gobject-introspection' 'gst-plugins-base' 'gst-plugins-good'
+ 'json-glib' 'libgee' 'sqlite3' 'libsoup')
+makedepends=('gnome-common' 'meson' 'gettext' 'appstream-glib' 'vala' 'yelp-tools')
+options=('!emptydirs')
+source=("${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('7b350583124f00f9030daaf4042cd54c9d340d67124dad298266d2dfa81ba766')
+conflicts=('gradio-git' 'gradio-bin')
+provides=("gradio=${pkgver}")
+
+build() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ meson builddir --prefix=/usr
+}
+
+package() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ DESTDIR="${pkgdir}" ninja -C builddir install
+}