wok annotate xapian/receipt @ rev 20167

Up smtube, smplayer (18.1.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Thu Jan 11 13:05:26 2018 +0100 (2018-01-11)
parents
children a78610b2eb47
rev   line source
pascal@17421 1 # SliTaz package receipt.
pascal@17421 2
pascal@17421 3 PACKAGE="xapian"
pascal@17421 4 VERSION="1.2.19"
pascal@17421 5 CATEGORY="office"
pascal@17421 6 SHORT_DESC="An Open Source Search Engine Library."
pascal@17421 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17421 8 LICENSE="GPL2"
pascal@17421 9 TARBALL="$PACKAGE-core-$VERSION.tar.xz"
pascal@17421 10 WEB_SITE="http://xapian.org/"
pascal@17421 11 WGET_URL="http://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL"
pascal@17421 12
pascal@17421 13 DEPENDS="util-linux-uuid zlib gcc-lib-base"
pascal@17421 14 BUILD_DEPENDS="util-linux-uuid-dev zlib-dev"
pascal@17421 15
pascal@17421 16 # Rules to configure and make the package.
pascal@17421 17 compile_rules()
pascal@17421 18 {
pascal@17421 19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@17421 20 make && make DESTDIR=$DESTDIR install
pascal@17421 21 }
pascal@17421 22
pascal@17421 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17421 24 genpkg_rules()
pascal@17421 25 {
pascal@17421 26 mkdir -p $fs/usr/lib
pascal@17421 27 cp -a $install/usr/bin $fs/usr
pascal@17421 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@17421 29 }