Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

add libicu as dependency for .deb packages #7126

Merged
merged 1 commit into from
Apr 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/generate_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ else
fi

if [ ${DISTRIB_RELEASE} = "16.04" ]; then
LIBSSL="libssl1.0.0"
RELEASE_SPECIFIC_DEPS="libssl1.0.0, libicu55"
elif [ ${DISTRIB_RELEASE} = "18.04" ]; then
LIBSSL="libssl1.1"
RELEASE_SPECIFIC_DEPS="libssl1.1, libicu60"
else
echo "Unrecognized Ubuntu version. Update generate_deb.sh. Not generating .deb file."
exit 1
Expand All @@ -37,7 +37,7 @@ echo "Package: ${PROJECT}
Version: ${VERSION_NO_SUFFIX}-${RELEASE}
Section: devel
Priority: optional
Depends: libc6, libgcc1, ${LIBSSL}, libstdc++6, libtinfo5, zlib1g, libusb-1.0-0, libcurl3-gnutls
Depends: libc6, libgcc1, ${RELEASE_SPECIFIC_DEPS}, libstdc++6, libtinfo5, zlib1g, libusb-1.0-0, libcurl3-gnutls
Architecture: amd64
Homepage: ${URL}
Maintainer: ${EMAIL}
Expand Down