diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-23 15:51:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-23 16:04:34 +0000 |
commit | 2389cb4d7bb1dc4adf14d4ee54e6178545a2c948 (patch) | |
tree | 6a7ab39685ae482d3cf92d015764f0ba7c66dd61 /debian | |
parent | Adding upstream version 6.3.2. (diff) | |
download | anydesk-2389cb4d7bb1dc4adf14d4ee54e6178545a2c948.tar.xz anydesk-2389cb4d7bb1dc4adf14d4ee54e6178545a2c948.zip |
Adding progress-linux version 6.3.2-0progress7.99u1.HEADprogress-linux
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 20 | ||||
-rw-r--r-- | debian/copyright | 20 | ||||
-rwxr-xr-x | debian/rules | 40 | ||||
-rw-r--r-- | debian/source/format | 1 |
5 files changed, 86 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1a418a5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +anydesk (6.3.2-0progress7.99u1) graograman-backports-extras; urgency=low + + * Initial reupload to graograman-backports-extras. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 23 Apr 2024 17:46:06 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..1ec35bc --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: anydesk +Section: restricted/admin +Priority: optional +Maintainer: Progress Linux Maintainers <maintainers@lists.progress-linux.org> +XSBC-Uploaders: Daniel Baumann <daniel.baumann@progress-linux.org> +Bugs: mailto:maintainers@lists.progress-linux.org +Build-Depends: + debhelper-compat (= 13), +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://www.anydesk.com +Vcs-Browser: https://git.progress-linux.org/packages/graograman-backports-extras/anydesk +Vcs-Git: https://git.progress-linux.org/packages/graograman-backports-extras/anydesk + +Package: anydesk +Section: restricted/admin +Architecture: amd64 +Depends: + ${misc:Depends}, +Description: diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..db86088 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,20 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: +Upstream-Contact: +Source: https://download.anydesk.com/linux/ + +Files: * +Copyright: +License: n/a + +Files: debian/* +Copyright: 2010-2024 Daniel Baumann <daniel.baumann@progress-linux.org> +License: PD + +License: PD + This program is free software: you have unlimited permission + to copy, distribute and modify it. + . + This program 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. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..73af650 --- /dev/null +++ b/debian/rules @@ -0,0 +1,40 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +execute_after_dh_auto_clean: + rm -rf build + +override_dh_auto_install: + mkdir -p build + tar xf anydesk-*.tar.gz -C build + + # bin + mkdir -p debian/anydesk/usr/bin + cp build/*/anydesk debian/anydesk/usr/bin + + # desktop + mkdir -p debian/anydesk/usr/share/applications + cp build/*/*.desktop debian/anydesk/usr/share/applications + + # icons + mkdir -p debian/anydesk/usr/share/icons + cp -r build/*/icons/hicolor debian/anydesk/usr/share/icons + + # polkit + mkdir -p debian/anydesk/usr/share/polkit-1/actions + cp build/*/polkit-1/*.policy debian/anydesk/usr/share/polkit-1/actions + + # systemd + mkdir -p debian/anydesk/lib/systemd/system + cp build/*/systemd/*.service debian/anydesk/lib/systemd/system + +override_dh_dwz: + # disabled + +override_dh_strip: + # disabled + +override_dh_strip_nondeterminism: + # disabled diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |