Last active
July 21, 2017 10:55
-
-
Save opatut/79073055bcf236d11963a9c995611a59 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: ELmoussaoui Bilal <[email protected]> | |
pkgname=gradio-git | |
_gitname=gradio | |
pkgver=5.0.0 | |
pkgrel=3 | |
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' | |
'gst-plugins-bad' 'gst-plugins-good' 'gst-plugins-good' 'json-glib' | |
'libgee' | |
'libsoup') | |
makedepends=('git' 'gnome-common' 'intltool' 'itstool' 'vala' 'yelp-tools' 'cmake' 'meson') | |
options=('!emptydirs') | |
install=gradio.install | |
source=("git://github.com/haecker-felix/${_gitname}.git") | |
md5sums=('SKIP') | |
conflicts=('gradio' 'gradio-bin') | |
provides=("gradio=$pkgver") | |
build() { | |
cd "$srcdir/${_gitname}" | |
meson --prefix /usr --buildtype=plain $BUILDDIR/build | |
ninja -v -C $BUILDDIR/build | |
} | |
package() { | |
cd "$srcdir/${_gitname}" | |
DESTDIR="${pkgdir}" ninja -C $BUILDDIR/build install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment