diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..cc65926 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +yproxy (YPROXY_VERSION) stable; urgency=low + + * Package build + + -- Kirill Reshke Mon, 13 Nov 2023 12:00:00 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..13343b0 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: yproxy +Section: database +Priority: optional +Maintainer: Kirill Reshke +Build-Depends: +Standards-Version: 3.8.0 +Homepage: https://github.com/yezzey-gp/yproxy + +Package: yproxy +Conflicts: +Architecture: any +Depends: +Description: Local daemon for S3 access, caching & throttling + This package will install yproxy binaries into /usr/bin diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..f30d799 --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +debian/build/* /usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a8fb843 --- /dev/null +++ b/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_build: + make build + +override_dh_auto_test: + + +override_dh_auto_install: + mkdir -p $(PWD)/debian/build + cp $(PWD)/devbin/* $(PWD)/debian/build + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)