44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
# Template file for 'biblioteq'
|
|
pkgname=biblioteq
|
|
version=2018.07.04
|
|
revision=1
|
|
build_style=qmake
|
|
configure_args="-o Makefile"
|
|
conf_files="/etc/biblioteq.conf"
|
|
makedepends="libpqxx-devel qt5-devel poppler-cpp-devel poppler-qt5-devel
|
|
sqlite-devel yaz-devel"
|
|
short_desc="Professional cataloging and library management suite"
|
|
maintainer="cr6git <quark6@protonmail.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://textbrowser.github.io/biblioteq/"
|
|
distfiles="https://github.com/textbrowser/biblioteq/archive/${version}.tar.gz"
|
|
checksum=700b546152b25e0d0fa983509051952f271e0ac215e00aa9557962c0f81bf6f3
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
arm*) configure_args+=" biblioteq.arm.pro" ;;
|
|
*) configure_args+=" biblioteq.pro" ;;
|
|
esac
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-devel poppler-cpp-devel"
|
|
fi
|
|
|
|
pre_configure() {
|
|
sed -i -e 's|biblioteq.conf|/etc/biblioteq.conf|' \
|
|
-e 's/-mtune=native//' -e 's/-Werror//' biblioteq.arm.pro
|
|
|
|
sed -i -e 's|biblioteq.conf|/etc/biblioteq.conf|' \
|
|
-e 's/-mtune=generic//' -e 's/-Werror//' biblioteq.pro
|
|
}
|
|
|
|
do_install() {
|
|
## Translations must be in the same directory as BiblioteQ (executable)
|
|
vinstall BiblioteQ 755 usr/lib/BiblioteQ
|
|
vcopy Translations usr/lib/BiblioteQ
|
|
vinstall Icons/book.png 644 usr/share/icons
|
|
vconf biblioteq.conf
|
|
vlicense LICENSE
|
|
vmkdir usr/bin
|
|
ln -s /usr/lib/BiblioteQ/BiblioteQ ${DESTDIR}/usr/bin/biblioteq
|
|
}
|