add starting framework for debian packaging

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5832 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-10-09 17:25:56 +00:00
parent cdb5862d40
commit b33418aa09
6 changed files with 95 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
freeswitch (1.0~beta1-1) unstable; urgency=low
* New packages.
-- Robert McQueen <robot101@debian.org> Sun, 12 Nov 2006 17:32:23 -0500

11
debian/control vendored Normal file
View File

@ -0,0 +1,11 @@
Source: freeswitch
Maintainer: Michael Jerris <mike@jerris.com>
Section: net
Priority: optional
Build-Depends: automake, autoconf, libtool
Package: freeswitch
Architecture: any
Depends: ${shlibs:Depends}
Description: it is the winning
lalal fixme

1
debian/copyright vendored Normal file
View File

@ -0,0 +1 @@
Freeswitch has lots of stuff. Some is MPL. See /usr/share/common-licenses/* for more.

1
debian/files vendored Normal file
View File

@ -0,0 +1 @@
freeswitch_1.0~beta1-1_i386.deb net optional

76
debian/rules vendored Executable file
View File

@ -0,0 +1,76 @@
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# This file is public domain software, originally written by Joey Hess.
# 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.
./bootstrap.sh
./configure
$(MAKE)
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
# Add here commands to clean up after the build process.
-$(MAKE) clean megaclean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/<packagename>
$(MAKE) install DESTDIR=`pwd`/debian/tmp
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
# dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installcatalogs
# dh_installpam
# dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_undocumented
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
# dh_python
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install

1
debian/substvars vendored Normal file
View File

@ -0,0 +1 @@
shlibs:Depends=libc6 (>= 2.3.6-6), libdb4.4, libgcc1 (>= 1:4.1.1-12), libsasl2-2, libssl0.9.8 (>= 0.9.8c-1), libstdc++6 (>= 4.1.1-12), libuuid1, zlib1g (>= 1:1.2.1)