summaryrefslogtreecommitdiffstats
path: root/admin/osiris/Makefile
blob: d93689b7e36b98c1bab354cf987970799258ed4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=osiris
PKG_VERSION:=4.2.3
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://osiris.shmoo.com/data/
PKG_MD5SUM:=1951c7dc0fe729af9ffaf58910340d12

PKG_FIXUP:=autoreconf
PKG_LIBTOOL_PATHS:=src/db-4.2.52/build_unix
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1

include $(INCLUDE_DIR)/package.mk

define Package/osirisd
  SECTION:=admin
  CATEGORY:=Administration
  DEPENDS:=+libopenssl +libpthread
  TITLE:=Host integrity monitoring system (scanning agent)
  URL:=http://osiris.shmoo.com/
endef

CONFIGURE_ARGS += \
	--with-osiris-user=root \
	--with-root-dir=/var/lib/osiris \
	--with-readline=no, \
	ac_cv_openssldir="$(STAGING_DIR)/usr"

MAKE_FLAGS += \
		DESTDIR="$(PKG_INSTALL_DIR)" \
		INTERACTIVE=0

define Package/osirisd/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/osirisd $(1)/usr/sbin/
	$(INSTALL_DIR) $(1)/etc/init.d
	$(INSTALL_BIN) ./files/osirisd.init $(1)/etc/init.d/osirisd
endef

$(eval $(call BuildPackage,osirisd))