diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-09-29 15:31:08 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-09-29 15:46:47 +0200 |
commit | 5a6b2aa261f2e070653bb89ba18de4975a1f2242 (patch) | |
tree | da383801e2f94797e4439e43b70b614897e5c706 /scripts | |
parent | 992d3a207d0a6cf4faeb835ea6a37ff33df9c87d (diff) |
CMake and CI extensions
* CPack support for debian packages
* Use CPack version string for nDPId
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make-dist.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/make-dist.sh b/scripts/make-dist.sh index c58524e81..bb2823a90 100755 --- a/scripts/make-dist.sh +++ b/scripts/make-dist.sh @@ -23,7 +23,9 @@ cd ./libnDPI && \ git archive --prefix="nDPId-${NDPID_GIT_VERSION}/libnDPI/" -o "../libnDPI-${LIBNDPI_GIT_VERSION}.tar" HEAD && \ cd .. git archive --prefix="nDPId-${NDPID_GIT_VERSION}/" -o "./nDPId-${NDPID_GIT_VERSION}.tar" HEAD +printf '%s\n' "Creating $(realpath ./nDPId-${NDPID_GIT_VERSION}.tar)" tar --concatenate --file="./nDPId-${NDPID_GIT_VERSION}.tar" "./libnDPI-${LIBNDPI_GIT_VERSION}.tar" -bzip2 -9 "./nDPId-${NDPID_GIT_VERSION}.tar" +printf '%s\n' "Creating $(realpath ./nDPId-${NDPID_GIT_VERSION}.tar.bz2)" +bzip2 -f -9 "./nDPId-${NDPID_GIT_VERSION}.tar" rm -f "${LOCKFILE}" |