packages/debian: initial commit, basic sample
This commit is contained in:
parent
8ff757f6df
commit
e4180e3e38
|
@ -0,0 +1,2 @@
|
|||
PLEASE DO NOT USE THIS YET. Still preparing basic stuff, should be ready
|
||||
with 2.0.0-beta1
|
|
@ -0,0 +1,5 @@
|
|||
icingaweb (2.0.0~beta1) unstable; urgency=low
|
||||
|
||||
* First beta release (Closes: #0000)
|
||||
|
||||
-- Thomas Gelf <thomas@gelf.net> Fri, 28 Mar 2014 23:37:31 +0100
|
|
@ -0,0 +1 @@
|
|||
9
|
|
@ -0,0 +1,31 @@
|
|||
Source: icingaweb
|
||||
Section: main
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>=9)
|
||||
Standards-Version: 3.9.4
|
||||
Homepage: https://www.icinga.org
|
||||
|
||||
Package: libicinga-php
|
||||
Architecture: any
|
||||
Depends: php5 (>= 5.3.2), zendframework
|
||||
Recommends: php5-ldap, php5-mysql, php5-json
|
||||
Suggests: php5-pgsql
|
||||
Description: Icinga PHP libraries
|
||||
PHP libraries
|
||||
|
||||
Package: icingacli
|
||||
Architecture: any
|
||||
Depends: libicingaweb-php (>= 2.0.0~beta1)
|
||||
Description: Icinga CLI tool
|
||||
The Icinga CLI allows one to access it's Icinga monitoring
|
||||
system from a terminal.
|
||||
.
|
||||
The CLI is based on the Icinga PHP libraries
|
||||
|
||||
Package: icingaweb
|
||||
Architecture: any
|
||||
Depends: libicingaweb-php (>= 2.0.0~beta1)
|
||||
Recommends: php5-gd, icingacli
|
||||
Suggests: php5-ldap
|
||||
Description: Icinga Web Frontend
|
||||
Icinga Web is a modular web frontend designed
|
|
@ -0,0 +1 @@
|
|||
bin/icingacli /usr/bin/
|
|
@ -0,0 +1 @@
|
|||
public /usr/share/icingaweb/
|
|
@ -0,0 +1,3 @@
|
|||
library/Icinga /usr/share/php/
|
||||
application /usr/share/icingaweb/
|
||||
modules /usr/share/icingaweb/
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/make -f
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
|
@ -0,0 +1 @@
|
|||
3.0 (git)
|
|
@ -0,0 +1 @@
|
|||
misc:Depends=
|
Loading…
Reference in New Issue