wok-next view menu-cache/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents 0e7893ac206d
children cedb51a0e63e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="menu-cache"
4 VERSION="1.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE implementation of the freedesktop menu's cache"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/lxde/menu-cache"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/lxde/menu-cache.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
15 BUILD_DEPENDS="glib-dev libfm-extra-dev gtk-doc"
16 SPLIT="menu-cache-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 --enable-gtk-doc \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 *-cache)
31 copy @std
32 DEPENDS="glib libfm-extra"
33 ;;
34 *-dev)
35 copy @dev
36 DEPENDS="menu-cache glib-dev"
37 ;;
38 esac
39 TAGS="LXDE"
40 }