summaryrefslogtreecommitdiff
path: root/notepadnext/debian/_service
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-01-23 00:50:02 +0000
committerB. Stack <bgstack15@gmail.com>2023-01-23 00:50:02 +0000
commit90ee682ea50c0ef446472a0177bf26a6371def0e (patch)
treea8dff38f92a0d7dbd10deef61a9d7a9bedb49501 /notepadnext/debian/_service
parentxpipe: add requirement for libbsd-dev (diff)
parentnn: update _service file (diff)
downloadstackrpms-90ee682ea50c0ef446472a0177bf26a6371def0e.tar.gz
stackrpms-90ee682ea50c0ef446472a0177bf26a6371def0e.tar.bz2
stackrpms-90ee682ea50c0ef446472a0177bf26a6371def0e.zip
Merge branch 'notepadnext-bump' into 'master'
NotepadNext 0.6 See merge request bgstack15/stackrpms!336
Diffstat (limited to 'notepadnext/debian/_service')
-rw-r--r--notepadnext/debian/_service29
1 files changed, 29 insertions, 0 deletions
diff --git a/notepadnext/debian/_service b/notepadnext/debian/_service
new file mode 100644
index 0000000..96a27c1
--- /dev/null
+++ b/notepadnext/debian/_service
@@ -0,0 +1,29 @@
+<services>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://gitlab.com/bgstack15/stackrpms.git</param>
+ <param name="subdir">notepadnext/debian</param>
+ <param name="filename">debian</param>
+ <param name="revision">notepadnext-bump</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">xz</param>
+ </service>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://github.com/dail8859/NotepadNext.git</param>
+ <param name="revision">v0.6</param>
+ <param name="version">_none_</param>
+ <param name="submodules">enable</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">gz</param>
+ </service>
+ <service name="extract_file">
+ <param name="archive">*.tar.xz</param>
+ <param name="files">*/*.dsc</param>
+ </service>
+</services>
bgstack15