summaryrefslogtreecommitdiff
path: root/notepadpp/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-12-29 13:06:46 +0000
committerB Stack <bgstack15@gmail.com>2019-12-29 13:06:46 +0000
commite91826c52adadc90dcb12c10df19a7cf60ca3ac4 (patch)
tree0dd4e58c857c63e2f0e0b250ed66028effb35fc9 /notepadpp/debian/control
parentMerge branch 'freefilesync-bump' into 'master' (diff)
downloadstackrpms-e91826c52adadc90dcb12c10df19a7cf60ca3ac4.tar.gz
stackrpms-e91826c52adadc90dcb12c10df19a7cf60ca3ac4.tar.bz2
stackrpms-e91826c52adadc90dcb12c10df19a7cf60ca3ac4.zip
Add notepad++ as notepadpp
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