summaryrefslogtreecommitdiff
path: root/notepadpp/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'notepadpp/debian/control')
-rw-r--r--notepadpp/debian/control34
1 files changed, 34 insertions, 0 deletions
diff --git a/notepadpp/debian/control b/notepadpp/debian/control
new file mode 100644
index 0000000..3985f5e
--- /dev/null
+++ b/notepadpp/debian/control
@@ -0,0 +1,34 @@
+Source: notepadpp
+Section: editors
+Priority: optional
+Maintainer: B Stack <bgstack15@gmail.com>
+Build-Depends: debhelper (>=12~)
+Standards-Version: 4.1.4
+Homepage: https://notepad-plus-plus.org/
+
+Package: notepadpp-common
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: common elements for notepadpp
+ Basic components that are arch-independent.
+
+Package: notepadpp-bin32
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends},
+ wine | wine-staging | winehq | winehq-staging | wine-stable,
+ notepadpp-common
+Provides: notepadpp, x-editor
+Description: editor from a non-free OS
+ The 32-bit release, which also includes TextFX
+
+Package: notepadpp-bin64
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends},
+ wine64 | wine-staging | winehq | winehq-staging | wine-stable,
+ notepadpp-common
+Provides: notepadpp, x-editor
+Description: editor from a non-free OS
+ The 64-bit release
bgstack15