mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 22:32:37 +01:00
50 lines
910 B
Bash
50 lines
910 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
VALA_MIN_API_VERSION=0.34
|
|
|
|
inherit gnome2-utils meson vala xdg-utils
|
|
|
|
DESCRIPTION="Organize your desktop with panels that hold your things"
|
|
HOMEPAGE="https://github.com/spheras/desktopfolder"
|
|
SRC_URI="https://github.com/spheras/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-libs/libgee:0.8
|
|
x11-libs/cairo[X]
|
|
dev-libs/json-glib
|
|
x11-libs/gdk-pixbuf
|
|
x11-libs/libwnck:3
|
|
x11-libs/gtksourceview:4"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
$(vala_depend)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-Port-to-GtkSourceView-4.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
vala_src_prepare
|
|
}
|
|
|
|
pkg_postinst() {
|
|
gnome2_schemas_update
|
|
xdg_desktop_database_update
|
|
xdg_icon_cache_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gnome2_schemas_update
|
|
xdg_desktop_database_update
|
|
xdg_icon_cache_update
|
|
}
|