Merge branch 'debian-packaging' into 'master'
Add Debian packaging See merge request Community/Purism/calls!3
This commit is contained in:
1
debian/calls.docs
vendored
Normal file
1
debian/calls.docs
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
README.md
|
||||||
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
calls (0.0~gite815677) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Bob Ham <rah@settrans.net> Wed, 23 May 2018 14:06:02 +0100
|
||||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
11
|
||||||
21
debian/control
vendored
Normal file
21
debian/control
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Source: calls
|
||||||
|
Section: comm
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Bob Ham <rah@settrans.net>
|
||||||
|
Build-Depends:
|
||||||
|
debhelper (>= 11),
|
||||||
|
libhandy-0.0-dev,
|
||||||
|
libgtk-3-dev,
|
||||||
|
meson,
|
||||||
|
pkg-config,
|
||||||
|
Standards-Version: 4.1.3
|
||||||
|
Homepage: https://gitlab.gnome.org/Community/Purism/calls
|
||||||
|
|
||||||
|
Package: calls
|
||||||
|
Architecture: any
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
${shlibs:Depends},
|
||||||
|
ofono,
|
||||||
|
Description: Make and receive PSTN phone calls
|
||||||
|
A GTK+ user interface for PSTN phone calls using oFono.
|
||||||
6
debian/rules
vendored
Executable file
6
debian/rules
vendored
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ -- -B_build
|
||||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
||||||
@@ -13,7 +13,7 @@ deps = [ dependency('gio-2.0'),
|
|||||||
dependency('gio-unix-2.0'),
|
dependency('gio-unix-2.0'),
|
||||||
]
|
]
|
||||||
|
|
||||||
gdbofono_lib = shared_library('gdbofono',
|
gdbofono_lib = static_library('gdbofono',
|
||||||
gdbus_src,
|
gdbus_src,
|
||||||
include_directories : include_directories('..'),
|
include_directories : include_directories('..'),
|
||||||
dependencies : deps )
|
dependencies : deps )
|
||||||
|
|||||||
@@ -58,4 +58,5 @@ calls_resources = gnome.compile_resources(
|
|||||||
executable('calls', sources, enum_sources, calls_resources,
|
executable('calls', sources, enum_sources, calls_resources,
|
||||||
dependencies : calls_deps,
|
dependencies : calls_deps,
|
||||||
link_with : gdbofono_lib,
|
link_with : gdbofono_lib,
|
||||||
include_directories : include_directories('..'))
|
include_directories : include_directories('..'),
|
||||||
|
install : true)
|
||||||
|
|||||||
Reference in New Issue
Block a user