wok-next view sagan-pgsql/receipt @ rev 20514

ardour, gdal, icu, js, jsoncpp, libvpx, llvm, mesa, minetest, opencv, qt5, scilab, webkit2gtk, webkitgtk, xalan-c: remove std.patch, use `fix math`.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 16:15:19 2018 +0200 (2018-03-21)
parents 408c87fa22ca
children 757d032c55c7
line source
1 # SliTaz package receipt.
3 PACKAGE="sagan-pgsql"
4 VERSION="0.2.0"
5 CATEGORY="security"
6 SHORT_DESC="Real time system and event log monitoring system with PostgreSQL support"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://sagan.softwink.com/"
10 SOURCE="sagan"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="http://sagan.softwink.com/download/$TARBALL"
14 DEPENDS="libesmtp libpcap libdnet libpostgresqlclient liblognorm sagan-rules"
15 BUILD_DEPENDS="libesmtp-dev libpcap-dev libdnet-dev postgresql-dev \
16 liblognorm-dev pcre-dev"
17 PROVIDE="sagan"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure $CONFIGURE_ARGS \
24 --sysconfdir=/etc/sagan \
25 --with-postgresql-includes=/usr/include/postgresql \
26 --with-postgresql-libraries=/usr/lib/postgresql \
27 --disable-mysql \
28 --disable-prelude \
29 --disable-lognorm \
30 && make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/var $fs/
40 cp -a $install/etc $fs/
41 }