-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added deb package build configuration
- Loading branch information
twojstaryzdomu
committed
Feb 26, 2022
1 parent
bfde6b3
commit 6cb9b63
Showing
8 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Source: rsync | ||
Section: unknown | ||
Priority: optional | ||
Maintainer: unknown <pi@> | ||
Build-Depends: debhelper (>= 11) | ||
Standards-Version: 4.1.3 | ||
Homepage: https://github.com/twojstaryzdomu/rsync | ||
Vcs-Git: https://github.com/twojstaryzdomu/rsync.git | ||
Vcs-Browser: https://github.com/twojstaryzdomu/rsync | ||
|
||
|
||
Package: rsync | ||
Section: unknown | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: rsync description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/INSTALL.md | ||
+++ b/INSTALL.md | ||
@@ -100,7 +100,7 @@ like. | ||
> sudo apt install -y attr libattr1-dev | ||
> sudo apt install -y libxxhash-dev | ||
> sudo apt install -y libzstd-dev | ||
- > sudo apt install -y libzlz4-dev | ||
+ > sudo apt install -y liblz4-dev | ||
> sudo apt install -y libssl-dev | ||
|
||
- For CentOS (use EPEL for python3-pip): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Description: Remove need to run reconfigure target | ||
Author: Samuel Henrique <[email protected]> | ||
Forwarded: not-needed | ||
Index: rsync/Makefile.in | ||
=================================================================== | ||
--- rsync.orig/Makefile.in | ||
+++ rsync/Makefile.in | ||
@@ -193,15 +193,6 @@ configure.sh config.h.in: configure.ac a | ||
else \ | ||
echo "config.h.in has CHANGED."; \ | ||
fi | ||
- @if test -f configure.sh.old -o -f config.h.in.old; then \ | ||
- if test "$(MAKECMDGOALS)" = reconfigure; then \ | ||
- echo 'Continuing with "make reconfigure".'; \ | ||
- else \ | ||
- echo 'You may need to run:'; \ | ||
- echo ' make reconfigure'; \ | ||
- exit 1; \ | ||
- fi \ | ||
- fi | ||
|
||
.PHONY: reconfigure | ||
reconfigure: configure.sh | ||
@@ -215,17 +206,6 @@ restatus: | ||
Makefile: Makefile.in config.status configure.sh config.h.in | ||
@if test -f Makefile; then cp -p Makefile Makefile.old; else touch Makefile.old; fi | ||
@./config.status | ||
- @if diff Makefile Makefile.old >/dev/null 2>&1; then \ | ||
- echo "Makefile is unchanged."; \ | ||
- rm Makefile.old; \ | ||
- else \ | ||
- if test "$(MAKECMDGOALS)" = reconfigure; then \ | ||
- echo 'Continuing with "make reconfigure".'; \ | ||
- else \ | ||
- echo "Makefile updated -- rerun your make command."; \ | ||
- exit 1; \ | ||
- fi \ | ||
- fi | ||
|
||
stunnel-rsyncd.conf: $(srcdir)/stunnel-rsyncd.conf.in Makefile | ||
sed 's;\@bindir\@;$(bindir);g' <$(srcdir)/stunnel-rsyncd.conf.in >stunnel-rsyncd.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
00_liblz4_install.patch disable_reconfigure_req.diff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/make -f | ||
%: | ||
dh $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
version=4 | ||
opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/rsync-$1\.tar\.gz/ \ | ||
https://github.com/twojstaryzdomu/rsync/releases .*/v?(\d\S+)\.tar\.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters