void-packages/srcpkgs/dbus-glib/template
Đoàn Trần Công Danh a92d370caa srcpkgs: add patch_args=-Np0 en-mass
Generated with:

	git ls-files 'srcpkgs/**/patches/*' |
	cut -d/ -f2 | uniq |
	xargs printf 'srcpkgs/%s/template\n'  |
	xargs grep -L 'patch_args=' |
	xargs sed -i "$(printf '1,/^$/{/^$/i\\\npatch_args=-Np0\n}\n')"
2021-06-20 13:17:29 +07:00

39 lines
1 KiB
Bash

# Template file for 'dbus-glib'
pkgname=dbus-glib
version=0.110
revision=1
build_style=gnu-configure
configure_args="--disable-static --disable-bash-completion"
hostmakedepends="pkg-config"
makedepends="libglib-devel dbus-devel"
depends="dbus"
short_desc="GLib bindings for D-Bus"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2"
homepage="http://www.freedesktop.org/wiki/Software/DBusBindings"
distfiles="http://dbus.freedesktop.org/releases/$pkgname/$pkgname-$version.tar.gz"
checksum=7ce4760cf66c69148f6bd6c92feaabb8812dee30846b24cd0f7395c436d7e825
patch_args=-Np0
if [ "$CROSS_BUILD" ]; then
configure_args+=" --with-dbus-binding-tool=dbus-binding-tool"
hostmakedepends+=" dbus-glib-devel"
fi
pre_configure() {
# Disable examples.
sed -e 's,SUBDIRS = . examples, SUBDIRS = .,' -i dbus/Makefile.in
}
dbus-glib-devel_package() {
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/bin
vmove usr/include
vmove usr/share
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}