wok view libfm-extra/receipt @ rev 22726

updated fish (2.1.1 -> 3.0.2)
author Hans-G?nter Theisgen
date Thu Jan 23 09:38:06 2020 +0100 (2020-01-23)
parents 0565f1ee2d73
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="libfm-extra"
4 VERSION="1.3.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="File management support (extra library)"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://pcmanfm.sourceforge.net"
11 TARBALL="libfm-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/pcmanfm/$TARBALL"
14 GENERIC_MENUS="no"
16 DEPENDS="glib glibc-base libgio"
17 BUILD_DEPENDS="automake gtk-doc libtool intltool"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./autogen.sh
23 ./configure \
24 --sysconfdir=/etc \
25 --with-extra-only \
26 --with-gtk=no \
27 --disable-static \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/usr/lib/*.so* $fs/usr/lib/
38 }