summaryrefslogtreecommitdiff
path: root/xpipe/debian/control
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-03-21 22:00:54 +0000
committerB. Stack <bgstack15@gmail.com>2021-03-21 22:00:54 +0000
commit93666a563b1d096c78b82f5e19260e53b2dc32e0 (patch)
treebc705952f1ade3908f1bbaf74c560a85cb2622e0 /xpipe/debian/control
parentadd nm xpi file to spec (diff)
parentadd xpipe (diff)
downloadstackrpms-93666a563b1d096c78b82f5e19260e53b2dc32e0.tar.gz
stackrpms-93666a563b1d096c78b82f5e19260e53b2dc32e0.tar.bz2
stackrpms-93666a563b1d096c78b82f5e19260e53b2dc32e0.zip
Merge branch 'xpipe-bump' into 'master'
add xpipe See merge request bgstack15/stackrpms!227
Diffstat (limited to 'xpipe/debian/control')
-rw-r--r--xpipe/debian/control18
1 files changed, 18 insertions, 0 deletions
diff --git a/xpipe/debian/control b/xpipe/debian/control
new file mode 100644
index 0000000..f4d9645
--- /dev/null
+++ b/xpipe/debian/control
@@ -0,0 +1,18 @@
+Source: xpipe
+Section: utils
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 12)
+Standards-Version: 4.5.0
+Homepage: https://github.com/jschauma/xpipe
+
+Package: xpipe
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: split stdin and pass in chunks
+ A utility that takes stdin and splits by the given
+ number of bytes, lines, or a matching pattern, and
+ passes it to a given command repeatedly. Think of it
+ as a combo of split, tee, and xargs.
+
bgstack15