wok annotate litmus/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 8752c40cc534
children f0664a4a59f2
rev   line source
pascal@3966 1 # SliTaz package receipt.
pascal@3966 2
pascal@3966 3 PACKAGE="litmus"
pascal@3966 4 VERSION="0.12.1"
pascal@3966 5 CATEGORY="network"
pascal@3966 6 SHORT_DESC="WEBDAV server protocol compliance test suite."
pascal@3966 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
pascal@3966 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@3966 10 WEB_SITE="http://www.webdav.org/neon/litmus"
pascal@3966 11 WGET_URL="$WEB_SITE/$TARBALL"
pascal@15002 12
pascal@5003 13 DEPENDS="openssl libkrb5 libcomerr3 expat neon readline zlib"
erjo@4784 14 BUILD_DEPENDS="openssl-dev krb5-dev expat-dev neon-dev readline-dev"
pascal@3966 15
pascal@3966 16 # Rules to configure and make the package.
pascal@3966 17 compile_rules()
pascal@3966 18 {
pascal@3966 19 cd $src
pascal@3966 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3966 21 --libexecdir=/usr/lib --mandir=/usr/share/man \
pascal@3966 22 $CONFIGURE_ARGS &&
pascal@3966 23 make &&
pascal@15002 24 make DESTDIR=$DESTDIR install
pascal@3966 25 }
pascal@3966 26
pascal@3966 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3966 28 genpkg_rules()
pascal@3966 29 {
pascal@3966 30 mkdir -p $fs/usr
pascal@15002 31 cp -a $install/usr/bin $fs/usr
pascal@15002 32 cp -a $install/usr/lib $fs/usr
pascal@3966 33 }
pascal@3966 34