Initial commit for .deb packaging

This commit is contained in:
Joshua Peisach 2023-09-14 20:39:53 -04:00
parent 5a09a29125
commit 877fe670f6
No known key found for this signature in database
GPG key ID: 41C3D4189AFEDB5A
6 changed files with 62 additions and 0 deletions

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
siedit (0.0~git20230914.5a09a29) bullseye; urgency=medium
* Initial release
-- Joshua Peisach <itzswirlz2020@outlook.com> Thu, 14 Sep 2023 20:14:31 -0400

14
debian/control vendored Normal file
View file

@ -0,0 +1,14 @@
Source: siedit
Section: utils
Priority: optional
Maintainer: Joshua Peisach <itzswirlz2020@outlook.com>
Build-Depends: cmake, debhelper-compat (= 13), dh-cmake, libavcodec-dev, libavdevice-dev, libavfilter-dev, libavformat-dev, libavutil-dev, libswresample-dev, libswscale-dev, qtbase5-dev, qtmultimedia5-dev
Standards-Version: 4.6.0
Homepage: https://github.com/itsmattkc/SIEdit
Rules-Requires-Root: no
Package: siedit
Architecture: all
Depends: ${misc:Depends}
Description: Tools for working with SI files
TODO: Extended description, check build deps

27
debian/copyright vendored Normal file
View file

@ -0,0 +1,27 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: siedit
Upstream-Contact: MattKC <business@mattkc.com>
Source: https://github.com/itsmattkc/SIEdit
Files: *
Copyright: 2023 MattKC <business@mattkc.com>
License: GPL-3+
Files: debian/*
Copyright: 2023 Joshua Peisach <itzswirlz2020@outlook.com>
License: GPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

14
debian/rules vendored Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/make -f
# see FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
%:
dh $@ --buildsystem=cmake

1
debian/source/format vendored Normal file
View file

@ -0,0 +1 @@
3.0 (native)

View file

@ -115,6 +115,7 @@ void File::seek(File::pos_t p, SeekMode s)
std::ios::seekdir d;
switch (s) {
default:
case SeekStart:
d = std::ios::beg;
break;