wok-next view incron/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 76ae76cc543f
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="incron"
4 VERSION="0.5.10"
5 CATEGORY="base-system"
6 SHORT_DESC="The inotify cron handles filesystem events."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://inotify.aiken.cz/"
11 WGET_URL="${WEB_SITE}download/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/incron.d"
14 DEPENDS="gcc-lib-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|fcntl.h>|&\n#include <unistd.h>|' icd-main.cpp
20 sed -i 's|/usr/local|/usr|' Makefile
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 cp -a $install/etc $fs/
32 cp -a $install/var $fs/
33 }