diff options
author | Ľubomír Kučera | 2023-07-04 12:58:54 +0200 |
---|---|---|
committer | Ľubomír Kučera | 2023-07-04 13:14:52 +0200 |
commit | ecca955bf0b3d18983143c62310c0df4fb81d303 (patch) | |
tree | 88b9b0b36e3721ff00b142563dd4b06d3449fa14 | |
parent | e23f77f9036a63b9468cc6a8735ff3132e23e414 (diff) | |
download | aur-ecca955bf0b3d18983143c62310c0df4fb81d303.tar.gz |
Add authenticity checks
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 13 |
2 files changed, 10 insertions, 7 deletions
@@ -12,9 +12,9 @@ pkgbase = eidklient source = eidklient sha256sums = SKIP source_i686 = https://eidas.minv.sk/downloadservice/eidklient/linux/eID_klient_i386.tar.gz - md5sums_i686 = SKIP + sha256sums_i686 = bccec263730fe6851db836915379bf32241df40f3a544e8b9b0362e0308bdec1 source_x86_64 = https://eidas.minv.sk/downloadservice/eidklient/linux/eID_klient_x86_64.tar.gz - md5sums_x86_64 = SKIP + sha256sums_x86_64 = ab07ca3ee4c9dc8cdb83feb349d2e60aa45fd00b9f1e5828d6820593af2759cb pkgname = eidklient depends = ccid @@ -21,9 +21,12 @@ source_x86_64=("${_url}/eID_klient_x86_64.tar.gz") sha256sums=( SKIP ) -# upstream update would break this PKGBUILD if we used integrity checks -md5sums_i686=('SKIP') -md5sums_x86_64=('SKIP') +sha256sums_i686=( + bccec263730fe6851db836915379bf32241df40f3a544e8b9b0362e0308bdec1 +) +sha256sums_x86_64=( + ab07ca3ee4c9dc8cdb83feb349d2e60aa45fd00b9f1e5828d6820593af2759cb +) options=("!strip") install=eidklient.install makedepends=( @@ -41,8 +44,8 @@ makedepends=( : "${source_i686[@]}" : "${source_x86_64[@]}" : "${sha256sums[@]}" -: "${md5sums_i686[@]}" -: "${md5sums_x86_64[@]}" +: "${sha256sums_i686[@]}" +: "${sha256sums_x86_64[@]}" : "${options[@]}" : "${install}" : "${makedepends[@]}" |