packages/admin/osiris/Makefile
nbd e296673ba6 packages: Use $(CP) instead of $(INSTALL_BIN) for binaries.
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@9695 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-12-09 18:59:01 +00:00

48 lines
1.1 KiB
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=osiris
PKG_VERSION:=4.2.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://osiris.shmoo.com/data/
PKG_MD5SUM:=1951c7dc0fe729af9ffaf58910340d12
include $(INCLUDE_DIR)/package.mk
define Package/osirisd
SECTION:=admin
CATEGORY:=Administration
DEPENDS:=+libopenssl +libpthread
TITLE:=Host integrity monitoring system (scanning agent)
URL:=http://www.hostintegrity.com/osiris
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 \
all install
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))