lollypop: update to 0.9.243

Build style changed to meson and ninja with this release.
This commit is contained in:
Jürgen Buchmüller 2017-07-09 13:56:32 +02:00
parent abfaa32947
commit c39727ef21
1 changed files with 13 additions and 5 deletions

View File

@ -1,12 +1,11 @@
# Template file for 'lollypop'
pkgname=lollypop
version=0.9.242
version=0.9.243
revision=1
build_style=gnu-configure
noarch=yes
nocross=yes
hostmakedepends="intltool itstool pkg-config glib-devel gobject-introspection python3"
makedepends="gtk+3-devel"
hostmakedepends="intltool itstool pkg-config glib-devel gobject-introspection python3 meson"
makedepends="gtk+3-devel python3-devel"
depends="gst-libav libsecret libnotify python3-youtube-dl python3-dbus
python3-gobject python3-pylast totem-pl-parser"
pycompile_module="lollypop"
@ -15,4 +14,13 @@ maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
license="GPL-3"
homepage="https://gnumdk.github.io/lollypop-web/"
distfiles="https://github.com/gnumdk/${pkgname}/releases/download/${version}/${pkgname}-${version}.tar.xz"
checksum=0d3200c5088ca25e79aed3fa3b2839fdd14f7cfde3bbbe41c2dd9921b96ffcde
checksum=c7e47a9153226d60d68eb9cbd2304211f9f4ebd5a80f85bb8fda49138adeb0c9
do_build() {
meson ${configure_args} --prefix /usr . _build
ninja ${makejobs} -C _build
}
do_install() {
env DESTDIR="$DESTDIR" ninja -C _build install
}