blob: 222e45d8c36fee503479f4d6b5d797b89e69b76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Chih-Hsuan Yen <yan12125@gmail.com>
pkgname=chunghwa-post-webatm
epoch=1
pkgver=1.2406.11.1
pkgrel=1
pkgdesc='WebATM plugin for Chunghwa Post (中華郵政 WebATM 元件)'
arch=(any)
url='https://webatm.post.gov.tw/'
license=(unknown)
depends=(gnutls pcsclite sh)
makedepends=(msitools gendesk perl-image-exiftool p7zip imagemagick)
source=("ATMSetup-$pkgver.msi"::"https://webatm.post.gov.tw/postatm/cab/ATMSetup.msi"
"$pkgname")
sha256sums=('8e72448a6cc78821ea5d7e84ce92399fc2a26ad9226effb403396af68db3c615'
'2a21dba5dea4132d3693cf3d6332cee2f3a0be650f0e19e76ece27cd834abb75')
prepare() {
msiextract ATMSetup-$pkgver.msi
}
pkgver() {
# Credit: https://askubuntu.com/a/717855
exiftool -ProductVersion ATMXHRService.exe | cut -f 2 -d : | sed 's# ##g'
}
build() {
7z x ATMXHRService.exe .rsrc
for icon in .rsrc/*/ICON/*.ico; do
dimension=$(identify -format "%wx%h" $icon)
mkdir -p icons/$dimension/apps
magick $icon icons/$dimension/apps/$pkgname.png
done
gendesk -n --pkgname "$pkgname" --name "Chunghwa Post WebATM" --categories "Office;Finance"
}
package() {
# Per https://bugs.winehq.org/show_bug.cgi?id=54661, 32-bit winscard.dll will be supported through wow64 thunks
# Keep wine-wow64 here, so that this package can be built with only official packages
depends+=(wine-wow64)
install -Dm755 $pkgname -t "$pkgdir"/usr/bin
install -Dm644 ATMXHRService.exe -t "$pkgdir"/usr/share/$pkgname
install -Dm644 cert.pem -t "$pkgdir"/usr/share/$pkgname
install -Dm644 prikey.pem -t "$pkgdir"/usr/share/$pkgname
install -Dm644 cacert.pem "$pkgdir"/usr/share/ca-certificates/trust-source/anchors/Chunghwa_Post_ATM.crt
install -Dm644 $pkgname.desktop -t "$pkgdir"/usr/share/applications
install -Ddm755 "$pkgdir"/usr/share/icons
cp -dr --no-preserve=ownership icons "$pkgdir"/usr/share/icons/hicolor
ln -s /usr/share/ca-certificates/trust-source/anchors/Chunghwa_Post_ATM.crt "$pkgdir"/usr/share/$pkgname/cacert.pem
}
|