wok annotate menu-cache/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents c9e270dd464f
children 8f42e5ca1910
rev   line source
pankso@2214 1 # SliTaz package receipt.
pankso@2214 2
pankso@2214 3 PACKAGE="menu-cache"
devl547@19601 4 VERSION="1.0.2"
pankso@2214 5 CATEGORY="x-window"
al@17992 6 SHORT_DESC="LXDE implementation of the freedesktop Menu's cache"
pankso@2214 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@16832 9 WEB_SITE="https://github.com/lxde/menu-cache"
al@17988 10 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@17988 11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
al@17992 12 TAGS="LXDE"
pankso@16252 13 HOST_ARCH="i486 arm"
pankso@2214 14
al@17222 15 DEPENDS="glib glibc-base libffi libfm libgio pcre zlib" # slitaz-menus ?
al@17988 16 BUILD_DEPENDS="gtk-doc libtool libfm-dev"
pankso@12161 17
pankso@2214 18 # Rules to configure and make the package.
pankso@2214 19 compile_rules()
pankso@2214 20 {
pankso@2214 21 ./configure \
pankso@2214 22 --prefix=/usr \
rcx@3624 23 --sysconfdir=/etc \
al@16832 24 --libexecdir=/usr/lib \
pankso@2214 25 $CONFIGURE_ARGS &&
pankso@16252 26 make && make install
pankso@2214 27 }
pankso@2214 28
pankso@2214 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2214 30 genpkg_rules()
pankso@2214 31 {
pankso@2214 32 mkdir -p $fs/usr/lib
pascal@15000 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15000 34 cp -a $install/usr/lib/menu-cache $fs/usr/lib
pankso@2214 35 }