wok-next view xapian/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 10df65db91ad
children cd7906120828
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xapian"
4 VERSION="1.4.5"
5 CATEGORY="utilities"
6 SHORT_DESC="The open source search engine"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://xapian.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/xapian.html"
12 TARBALL="xapian-core-$VERSION.tar.xz"
13 WGET_URL="http://oligarchy.co.uk/xapian/$VERSION/$TARBALL"
15 BUILD_DEPENDS="perl zlib-dev util-linux-uuid-dev"
16 SPLIT="xapian-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 xapian)
30 copy @std
31 DEPENDS="util-linux-uuid zlib"
32 ;;
33 *-dev) copy @dev;;
34 esac
35 }