summaryrefslogtreecommitdiff
path: root/scite/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'scite/debian/control')
-rw-r--r--scite/debian/control24
1 files changed, 24 insertions, 0 deletions
diff --git a/scite/debian/control b/scite/debian/control
new file mode 100644
index 0000000..682ad5e
--- /dev/null
+++ b/scite/debian/control
@@ -0,0 +1,24 @@
+Source: scite
+Maintainer: B. Stack <bgstack15@gmail.com>
+XSBC-Original-Maintainer: Michael Vogt <mvo@debian.org>
+Section: editors
+Priority: optional
+Rules-Requires-Root: no
+Build-Depends: debhelper-compat (= 13),
+ libgtk-3-dev,
+ libglib2.0-dev,
+ liblua5.4-dev
+Standards-Version: 4.6.0.1
+Vcs-Browser: https://salsa.debian.org/debian/scite
+Vcs-Git: https://salsa.debian.org/debian/scite.git
+Homepage: https://scintilla.org/SciTE.html
+
+Package: scite
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Provides: editor
+Description: Lightweight GTK-based programming editor
+ GTK-based programming editor with syntax highlighting support for
+ many languages. Also supports folding sections, exporting
+ highlighted text into colored HTML and RTF.
bgstack15