-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cac5490
commit 1520196
Showing
11 changed files
with
56 additions
and
1,456 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
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,5 @@ | ||
redemption (%VERSION%) unknown; urgency=low | ||
|
||
* rdpproxy | ||
|
||
-- wallix <wab at wallix.com> Tue, 01 Sep 2020 17:01:56 +0200 |
2 changes: 1 addition & 1 deletion
2
packaging/template/debian/compat → packaging/debian/compat
100755 → 100644
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 |
---|---|---|
@@ -1 +1 @@ | ||
10 | ||
10 |
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,15 @@ | ||
Source: redemption | ||
Section: net | ||
Priority: extra | ||
Maintainer: Proxy Team <[email protected]> | ||
Build-Depends: debhelper (>=7), dpkg-dev, g++, libboost-tools-dev, libssl-dev, libkrb5-dev, libsnappy-dev, libpng-dev, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev, libx264-dev, zlib1g-dev, libbz2-dev, libhyperscan-dev | ||
Standards-Version: %VERSION% | ||
Homepage: https://github.com/wallix/redemption | ||
|
||
Package: redemption | ||
Architecture: any | ||
Homepage: https://github.com/wallix/redemption | ||
Depends: ${shlibs:Depends} | ||
Description: A new generation RDP proxy for WAB | ||
A new generation RDP proxy for WAB | ||
wwww: https://github.com/wallix/redemption |
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,4 @@ | ||
/etc/rdpproxy/* | ||
/usr/local/bin/* | ||
/usr/local/share/rdpproxy/* | ||
/usr/local/lib/libredrec.so |
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
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,18 @@ | ||
#!/bin/bash | ||
|
||
set -exu | ||
|
||
cd "$(dirname "$0")/.." | ||
|
||
if ! [[ "$(<include/main/version.hpp)" =~ 'VERSION "'([^\"]+) ]]; then | ||
echo Version not found >&2 | ||
exit 1 | ||
fi | ||
version="${BASH_REMATCH[1]}" | ||
|
||
[[ -d debian ]] && rm -rf debian | ||
cp -R packaging/debian debian | ||
sed -i "s/%VERSION%/$version/g" debian/* | ||
|
||
dpkg-buildpackage -b -tc -us -uc -r | ||
rm -rf debian |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.