47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Template file for 'zbar'
|
|
pkgname=zbar
|
|
version=0.10
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_with qt) --with-gtk"
|
|
hostmakedepends="automake pkg-config libtool gettext-devel python
|
|
$(vopt_if qt 'qt-qmake qt-host-tools') glib-devel"
|
|
makedepends="libmagick-devel libXv-devel pygtk-devel $(vopt_if qt qt-devel) v4l-utils-devel"
|
|
short_desc="A barcode reading library and application"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="LGPL-2"
|
|
homepage="https://zbar.sourceforge.net/"
|
|
distfiles="$SOURCEFORGE_SITE/zbar/${version}/${pkgname}-${version}.tar.bz2"
|
|
checksum=234efb39dbbe5cef4189cc76f37afbe3cfcfb45ae52493bfe8e191318bdbadc6
|
|
depends="libzbar-${version}_${revision}"
|
|
|
|
build_options="qt"
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
mips*) ;; # don't enable qt as it can't be built for mips*
|
|
*) build_options_default="qt" ;;
|
|
esac
|
|
|
|
CFLAGS="-DNDEBUG"
|
|
|
|
pre_configure() {
|
|
export PYTHON_CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
autoreconf -fi
|
|
}
|
|
|
|
libzbar_package() {
|
|
short_desc+=" - library files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
libzbar-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libzbar>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|