51 lines
1.5 KiB
Bash
51 lines
1.5 KiB
Bash
# Template file for 'GPaste'
|
|
pkgname=GPaste
|
|
version=3.42.2
|
|
revision=1
|
|
wrksrc="gpaste-${version}"
|
|
build_style=meson
|
|
configure_args="$(vopt_bool gnome_shell gnome-shell)
|
|
-Dcontrol-center-keybindings-dir=/usr/share/gnome-control-center/keybindings
|
|
-Dsystemd-user-unit-dir=/usr/lib/systemd"
|
|
hostmakedepends="gettext glib-devel pkg-config vala gobject-introspection"
|
|
makedepends="appstream-glib-devel dbus-devel gdk-pixbuf-devel gtk+3-devel
|
|
libglib-devel libXi-devel libXtst-devel libX11-devel harfbuzz-devel
|
|
$(vopt_if gnome_shell 'gjs-devel mutter-devel') vala-devel"
|
|
short_desc="Clipboard management system"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://www.imagination-land.org/tags/GPaste.html"
|
|
distfiles="https://www.imagination-land.org/files/gpaste/gpaste-${version}.tar.xz"
|
|
checksum=a0972a41d70c73b854378a5f6484df0cb2596c85d196bc2ba5ab82fe0c5abd8c
|
|
build_helper=gir
|
|
|
|
build_options="gnome_shell"
|
|
desc_option_gnome_shell="Build GNOME Shell integration and extension"
|
|
build_options_default="gnome_shell"
|
|
|
|
pre_build() {
|
|
export GIR_EXTRA_LIBS_PATH="${wrksrc}/lib/.libs"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
GPaste-devel_package() {
|
|
depends="libgpaste-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/gir-1.0
|
|
vmove usr/share/vala
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libgpaste_package() {
|
|
short_desc+=" - gpaste library"
|
|
pkg_install() {
|
|
vmove "usr/lib/libgpaste.so.*"
|
|
}
|
|
}
|