wok-next view libfm-extra/receipt @ rev 20195

lirc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 03 11:41:58 2017 +0100 (2017-11-03)
parents 4688f12eea68
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libfm-extra"
4 VERSION="1.2.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library and other files required by menu-cache-gen"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.lxde.org/en/Libfm"
11 TARBALL="libfm-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/pcmanfm/$TARBALL"
14 BUILD_DEPENDS="intltool gtk-doc"
15 SPLIT="libfm-extra-dev"
16 SIBLINGS="libfm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # http://www.linuxfromscratch.org/blfs/view/stable/lxde/libfm-extra.html
22 ./configure \
23 --sysconfdir=/etc \
24 --with-extra-only \
25 --with-gtk=no \
26 --disable-static \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 case $PACKAGE in
35 *-extra)
36 copy @std
37 DEPENDS="glib"
38 ;;
39 *-dev)
40 copy @dev
41 DEPENDS="libfm-extra glib-dev libffi-dev pcre-dev \
42 util-linux-blkid-dev util-linux-mount-dev util-linux-uuid-dev \
43 zlib-dev"
44 ;;
45 esac
46 }