Creating ubuntu package

This commit is contained in:
Sean Davis 2013-07-14 12:01:53 -04:00
parent f3ddba1394
commit 2ce2c2bb8c
6 changed files with 47 additions and 0 deletions

Binary file not shown.

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
mugshot (0.1) raring; urgency=low
* Initial release.
-- Sean Davis <smd.seandavis@gmail.com> Sun, 14 Jul 2013 12:01:53 -0400

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
8

22
debian/control vendored Normal file
View File

@ -0,0 +1,22 @@
Source: mugshot
Section: python
Priority: extra
Build-Depends: debhelper (>= 8),
python (>= 2.6.6-3~),
python-distutils-extra (>= 2.10)
Maintainer: UNKNOWN <UNKNOWN>
Standards-Version: 3.9.3
X-Python-Version: >= 2.6
Package: mugshot
Architecture: all
Depends: ${misc:Depends},
${python:Depends},
gir1.2-glib-2.0,
gir1.2-gtk-3.0,
python-dbus,
python-pexpect,
gir1.2-gdkpixbuf-2.0,
yelp
Description: UNKNOWN
UNKNOWN

10
debian/copyright vendored Normal file
View File

@ -0,0 +1,10 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: mugshot
Upstream-Contact: UNKNOWN <UNKNOWN>
Source: UNKNOWN
Files: *
Copyright: (C) 2013 Sean Davis <smd.seandavis@gmail.com>
License: GPL-3
The full text of the GPL is distributed in
/usr/share/common-licenses/GPL-3 on Debian systems.

9
debian/rules vendored Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/make -f
%:
ifneq ($(shell dh -l | grep -xF translations),)
dh $@ --with python2,translations
else
dh $@ --with python2
endif