wok-next view avfs/receipt @ rev 20405

Follow BLFS Chapter 9 "General Libraries": up apr, apr-util, aspell, autoconf213 (for js), dbus-glib, enchant, exempi, fftw, glib, glibmm, gmime, gobject-introspection, gsl, js, libboost.

js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 07 17:39:40 2017 +0200 (2017-12-07)
parents 380ffe05937a
children 474eb4a6385a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="avfs"
4 VERSION="1.0.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A virtual Filesystem implemented with FUSE"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://avfs.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
14 BUILD_DEPENDS="gfortran fuse-dev xz-dev"
15 SPLIT="avfs-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-fuse \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 avfs)
32 copy @std
33 DEPENDS="fuse liblzma"
34 ;;
35 *-dev)
36 copy @dev
37 DEPENDS="avfs xz-dev"
38 ;;
39 esac
40 }