1c5f4690e6
That means that version comparators are not supported anymore in hostmakedepends and makedepends. This will ensure that a pkg is always built with the same build dependencies everywhere, if the srcpkgs tree is uptodate.
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
# Template file for 'brasero'
|
|
pkgname=brasero
|
|
version=3.12.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-schemas-compile --disable-caches"
|
|
hostmakedepends="pkg-config intltool which gnome-doc-utils itstool"
|
|
makedepends="gst-plugins-base1-devel totem-pl-parser-devel libnotify-devel
|
|
libcanberra-devel nautilus-devel tracker-devel libisofs-devel
|
|
libburn-devel libSM-devel cdrtools dconf-devel"
|
|
depends="cdrtools dconf>=0.20 shared-mime-info hicolor-icon-theme desktop-file-utils"
|
|
short_desc="Application to burn CD/DVD for the Gnome Desktop"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.gnome.org/projects/brasero"
|
|
license="GPL-2"
|
|
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
|
checksum=68fef2699b772fa262d855dac682100dbfea05563a7e4056eff8fe6447aec2fc
|
|
|
|
# Package build options
|
|
build_options="gir"
|
|
|
|
# Disable gir for cross builds.
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
fi
|
|
|
|
if [ "$build_option_gir" ]; then
|
|
configure_args+=" --enable-introspection"
|
|
makedepends+=" gobject-introspection"
|
|
else
|
|
configure_args+=" --disable-introspection"
|
|
fi
|
|
|
|
brasero-devel_package() {
|
|
depends="gtk+3-devel brasero>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
fi
|
|
vmove usr/share/gtk-doc
|
|
}
|
|
}
|