mirror of https://github.com/sipwise/www_admin.git
parent
c1c7405884
commit
f880cc76c0
@ -0,0 +1,11 @@
|
||||
sipwise-www-admin (1.1.5-1) unstable; urgency=low
|
||||
|
||||
* using prov-iface E.164 check functions
|
||||
|
||||
-- unreleased
|
||||
|
||||
sipwise-www-admin (1.1.4-1) unstable; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Michael Prokop <mika@grml.org> Tue, 10 Feb 2009 18:45:14 +0100
|
||||
@ -0,0 +1 @@
|
||||
7
|
||||
@ -0,0 +1,16 @@
|
||||
Source: sipwise-www-admin
|
||||
Section: admin
|
||||
Priority: extra
|
||||
Maintainer: Michael Prokop <mika@grml.org>
|
||||
Build-Depends: debhelper (>= 5)
|
||||
Standards-Version: 3.8.0
|
||||
Homepage: http://sipwise.com/
|
||||
Vcs-svn: https://dev.sipwise.com/svn/www_admin
|
||||
Vcs-Browser: https://dev.sipwise.com/svn/www_admin
|
||||
|
||||
Package: sipwise-www-admin
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ossbss, libcatalyst-perl
|
||||
Description: administration framework to configure the Sipwise NGCP
|
||||
This package provides an administration framework which is used to
|
||||
configure the Sipwise NGCP.
|
||||
@ -0,0 +1,22 @@
|
||||
This package was debianized by Michael Prokop <mika@grml.org> on
|
||||
Tue, 10 Feb 2009 18:45:14 +0100.
|
||||
|
||||
It was downloaded from http://sipwise.com/
|
||||
|
||||
Upstream Author:
|
||||
|
||||
Daniel Tiefnig <dtiefnig@sipwise.com>
|
||||
|
||||
Copyright:
|
||||
|
||||
Copyright (c) 2007-2009 Sipwise GmbH, Austria
|
||||
|
||||
License:
|
||||
|
||||
All software included in this package is Copyright (c) 2007-2009 Sipwise
|
||||
GmbH, Austria. All rights reserved.
|
||||
You may not copy, distribute or modify without prior written permission
|
||||
from Sipwise GmbH, Austria.
|
||||
|
||||
The Debian packaging is copyright 2009, Michael Prokop <mika@grml.org> and
|
||||
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
|
||||
@ -0,0 +1,73 @@
|
||||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
# Sample debian/rules that uses debhelper.
|
||||
# This file was originally written by Joey Hess and Craig Small.
|
||||
# As a special exception, when this file is copied by dh-make into a
|
||||
# dh-make output file, you may use that output file without restriction.
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
build: build-stamp
|
||||
|
||||
build-stamp:
|
||||
dh_testdir
|
||||
|
||||
# Add here commands to compile the package.
|
||||
# $(MAKE)
|
||||
|
||||
touch $@
|
||||
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm -f build-stamp
|
||||
|
||||
# Add here commands to clean up after the build process.
|
||||
# $(MAKE) clean
|
||||
|
||||
dh_clean
|
||||
|
||||
install: build
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_prep
|
||||
dh_installdirs usr/local/admin usr/local/admin/script/
|
||||
|
||||
# Add here commands to install the package into debian/sipwise-www-admin.
|
||||
cp -a lib debian/sipwise-www-admin/usr/local/admin/
|
||||
cp -a root debian/sipwise-www-admin/usr/local/admin/
|
||||
install -m 644 admin.yml debian/sipwise-www-admin/usr/local/admin/
|
||||
# we don't need admin_create.pl and admin_test.pl:
|
||||
install -m 755 script/admin_cgi.pl debian/sipwise-www-admin/usr/local/admin/script/
|
||||
install -m 755 script/admin_fastcgi.pl debian/sipwise-www-admin/usr/local/admin/script/
|
||||
install -m 755 script/admin_server.pl debian/sipwise-www-admin/usr/local/admin/script/
|
||||
# make sure we don't have any svn files inside the .deb:
|
||||
find debian/sipwise-www-admin -name \.svn -print0 | xargs -0 rm -rf
|
||||
|
||||
|
||||
# Build architecture-dependent files here.
|
||||
binary-arch: install
|
||||
# We have nothing to do by default.
|
||||
|
||||
# Build architecture-independent files here.
|
||||
binary-indep: install
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installchangelogs
|
||||
dh_installdocs
|
||||
dh_installexamples
|
||||
dh_installman
|
||||
dh_link
|
||||
dh_strip
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_shlibdeps
|
||||
dh_gencontrol
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
.PHONY: build clean binary-indep binary-arch binary install
|
||||
Loading…
Reference in new issue