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.
48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
# Template file for 'cups-filters'
|
|
pkgname=cups-filters
|
|
version=1.0.67
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --with-rcdir=no --enable-avahi
|
|
--with-browseremoteprotocols=DNSSD,CUPS"
|
|
hostmakedepends="pkg-config ghostscript poppler-utils"
|
|
makedepends="lcms2-devel libpng-devel libqpdf-devel
|
|
poppler-cpp-devel fontconfig-devel avahi-glib-libs-devel
|
|
ghostscript-devel cups-devel"
|
|
depends="lib${sourcepkg}-${version}_${revision} ghostscript poppler-utils"
|
|
conf_files="/etc/cups/cups-browsed.conf"
|
|
short_desc="The OpenPrinting CUPS Filters"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2, LGPL-2.1, MIT"
|
|
homepage="http://www.linuxfoundation.org/collaborate/workgroups/openprinting"
|
|
distfiles="http://www.openprinting.org/download/${pkgname}/${pkgname}-${version}.tar.xz"
|
|
checksum=38814577d8157b4b179700fe4592180b1cfe3662fcb5a7aa660dc5d41c6be816
|
|
|
|
lib32disabled=yes
|
|
disable_parallel_build=yes
|
|
build_options="systemd"
|
|
|
|
provides="foomatic-filters-${version}_${revision}"
|
|
replaces="foomatic-filters>=0"
|
|
|
|
post_install() {
|
|
if [ "$build_option_systemd" ]; then
|
|
vinstall utils/cups-browsed.service 644 usr/lib/systemd/system
|
|
fi
|
|
}
|
|
|
|
libcups-filters_package() {
|
|
short_desc+=" - shared library"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
}
|
|
}
|
|
libcups-filters-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libcups-filters-${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|