wok view xapian/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents acc374c091ec
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="xapian"
4 VERSION="1.4.15"
5 CATEGORY="office"
6 SHORT_DESC="An Open Source Search Engine Library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://xapian.org/"
11 TARBALL="$PACKAGE-core-$VERSION.tar.xz"
12 WGET_URL="https://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="gcc83-lib-base util-linux-uuid zlib"
15 BUILD_DEPENDS="gcc83 util-linux-uuid-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 CC=gcc-83 \
22 CXX=g++-83 \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }