check_oracle_health: update to 1.9.3.5
[omd.git] / packages / check_oracle_health / Makefile
blob59078dd926ec185b60a58618a7112087933899c3
1 include ../../Makefile.omd
3 NAME = check_oracle_health
4 VERSION = 1.9.3.5
5 DIR = $(NAME)-$(VERSION)
7 .PHONY: skel
9 # Configure options for Nagios. Since we want to compile
10 # as non-root, we use our own user and group for compiling.
11 # All files will be packaged as user 'root' later anyway.
12 CONFIGUREOPTS = ""
14 build:
15 tar xzf $(DIR).tar.gz
16 cd $(DIR) ; ./configure $(CONFIGUREOPTS)
17 $(MAKE) -C $(DIR)
19 install:
20 [ -d $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins ] || mkdir -p $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins
21 install -m 755 $(DIR)/plugins-scripts/check_oracle_health $(DESTDIR)$(OMD_ROOT)/lib/nagios/plugins
23 skel:
25 clean:
26 rm -rf $(DIR)