Signed-off-by: Dongjin Kim <tobetter@gmail.com>
This commit is contained in:
Dongjin Kim
2021-01-13 19:23:19 +09:00
committed by YoungSoo Shin
parent ca7e074b88
commit 5abe3ffe1e
5 changed files with 36 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@@ -0,0 +1,5 @@
mainsail (0.1) stable; urgency=medium
* Initial release.
-- Dongjin Kim <tobetter@gmail.com> Wed, 13 Jan 2021 19:22:10 +0900

1
debian/compat vendored Normal file
View File

@@ -0,0 +1 @@
9

13
debian/control vendored Normal file
View File

@@ -0,0 +1,13 @@
Source: mainsail
Section: python
Priority: extra
Maintainer: Dongjin Kim <tobetter@gmail.com>
Build-Depends: debhelper (>= 9)
Standards-Version: 3.9.5
X-Python3-Version: >= 3.7
Package: mainsail
Architecture: any
Depends: ${misc:Pre-Depends}
Description: Mainsail for Klipper
...

13
debian/mainsail.install vendored Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
ROOT_PATH=/usr/lib/mainsail
files=$(find \( -name . -o \
-name .git -prune -o \
-name .github -prune -o \
-name .gitignore -prune -o \
-name debian -prune \) -o -print | sed -e 's/^\.\///')
for f in ${files}; do
echo "${f} ${ROOT_PATH}/$(dirname ${f})"
done

4
debian/rules vendored Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@