wok-next view xapian/receipt @ rev 19805

Update full xorg-* stack (add / upgrade / remove no more compiled packages with this xorg-server), normalize receipts to v2.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jul 14 16:02:21 2017 +0300 (2017-07-14)
parents 5392e474ed6e
children 10df65db91ad
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xapian"
4 VERSION="1.4.4"
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/"
11 TARBALL="xapian-core-$VERSION.tar.xz"
12 WGET_URL="http://oligarchy.co.uk/xapian/$VERSION/$TARBALL"
14 BUILD_DEPENDS="perl zlib-dev util-linux-uuid-dev"
15 SPLIT="xapian-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 case $PACKAGE in
27 xapian)
28 copy @std
29 DEPENDS="util-linux-uuid zlib"
30 ;;
31 *-dev) copy @dev;;
32 esac
33 }