aboutsummaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-01-07 20:52:38 -0500
committerB Stack <bgstack15@gmail.com>2021-01-07 20:56:10 -0500
commitbadcb48cd279f0e2a0ed7eae2661171f2411e647 (patch)
tree920d3319404ece4811fd7f8bea5ef96ba52021e1 /debian/control
downloadfuss-badcb48cd279f0e2a0ed7eae2661171f2411e647.tar.gz
fuss-badcb48cd279f0e2a0ed7eae2661171f2411e647.tar.bz2
fuss-badcb48cd279f0e2a0ed7eae2661171f2411e647.zip
initial commit
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..9b08d51
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: fuss
+Section: web
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 12)
+Standards-Version: 4.5.0
+Homepage: https://gitlab.com/bgstack15/fuss/
+
+Package: fuss
+Architecture: all
+Multi-Arch: foreign
+Pre-Depends: adduser
+Depends: ${misc:Depends}, ${shlibs:Depends},
+ lsb-base,
+ python3-flask,
+ python3-uwsgidecorators,
+ python3:any,
+ uwsgi-core,
+ uwsgi-plugin-python3
+Recommends: apache2
+Description: File Upload and Storage Service
+ A demo web app using flask to present a simple
+ web page for uploading and downloading files.
bgstack15