summaryrefslogtreecommitdiff
path: root/notepadnext/debian
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-01-22 17:00:08 -0500
committerB. Stack <bgstack15@gmail.com>2023-01-22 17:00:08 -0500
commit6aafea9937e1df2cef5229e6363d2fb55ec33425 (patch)
treea8dff38f92a0d7dbd10deef61a9d7a9bedb49501 /notepadnext/debian
parentnotepadnext 0.6 (diff)
downloadstackrpms-6aafea9937e1df2cef5229e6363d2fb55ec33425.tar.gz
stackrpms-6aafea9937e1df2cef5229e6363d2fb55ec33425.tar.bz2
stackrpms-6aafea9937e1df2cef5229e6363d2fb55ec33425.zip
nn: update _service file
Diffstat (limited to 'notepadnext/debian')
-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