45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# Template file for 'xapian-core'
|
|
pkgname=xapian-core
|
|
version=1.4.9
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static"
|
|
makedepends="zlib-devel libuuid-devel"
|
|
short_desc="Open source search engine"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.xapian.org/"
|
|
distfiles="https://oligarchy.co.uk/xapian/${version}/${pkgname}-${version}.tar.xz"
|
|
checksum=cde9c39d014f04c09b59d9c21551db9794c10617dc69ab4c9826352a533df5cc
|
|
|
|
# xapian-config needs the .la
|
|
keep_libtool_archives=yes
|
|
|
|
xapian-core-devel_package() {
|
|
depends="libxapian-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share/aclocal
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.la
|
|
vmove usr/lib/*.so
|
|
vmove usr/bin/xapian-config
|
|
vmove usr/share/man/man1/xapian-config.1
|
|
}
|
|
}
|
|
xapian-core-doc_package() {
|
|
short_desc+=" - documentation"
|
|
noarch=yes
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
libxapian_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
}
|
|
}
|