mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 20:22:38 +01:00
55 lines
1.0 KiB
Bash
55 lines
1.0 KiB
Bash
# Copyright 2020 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit meson gnome2-utils vcs-snapshot
|
|
|
|
DESCRIPTION="WebP Image format GdkPixbuf loader"
|
|
HOMEPAGE="https://github.com/aruiz/webp-pixbuf-loader"
|
|
|
|
SRC_URI="https://github.com/aruiz/webp-pixbuf-loader/archive/0.0.1.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-libs/libwebp-0.4.3
|
|
>=x11-libs/gdk-pixbuf-2.22"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
sed \
|
|
-e "s#@bindir@#${EPREFIX}/usr/bin#g" \
|
|
"${FILESDIR}"/gdk-pixbuf-webp-thumbnailer.thumbnailer > "${T}"/gdk-pixbuf-webp-thumbnailer.thumbnailer || die
|
|
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dgdk_pixbuf_query_loaders_path=/bin/true
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
insinto "/usr/share/thumbnailers/"
|
|
doins "${T}"/gdk-pixbuf-webp-thumbnailer.thumbnailer
|
|
|
|
meson_src_install
|
|
}
|
|
|
|
pkg_preinst() {
|
|
gnome2_gdk_pixbuf_savelist
|
|
}
|
|
|
|
pkg_postinst() {
|
|
gnome2_gdk_pixbuf_update
|
|
}
|
|
|
|
pkg_postinst() {
|
|
gnome2_gdk_pixbuf_update
|
|
}
|