Permalink
Newer
100755
46 lines (34 sloc)
979 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION safenetauthenticationclient-10.7.77-0
4
5
# more info on Token: https://safenet.gemalto.com/multi-factor-authentication/authenticators/pki-usb-authentication/etoken-5300-usb-token/
6
#
7
# Download Driver from
8
# https://extranet.mpg.de/IKT/Projekte/15022/Datenraum%20Rollouts/Forms/AllItems.aspx
9
# - 001_Citrix_Client-Komponenten - 003_Linux - CryptoToken Treiber - safenetauthenticationclient_10.7.77_amd64
10
11
SRCURL[0]="/src/mariux/beeroot/downloads/safenetauthenticationclient_${PKGVERSION}_amd64.deb"
12
13
# PATCHURL+=()
14
15
# build_in_sourcedir
16
17
# sourcesubdir_append src
18
19
mee_extract() {
20
cd $S
21
start_cmd ar xv "${@}"
22
mkdir control
23
start_cmd tar xvf control.tar.gz -C control
24
start_cmd tar xvf data.tar.xz
25
echo \$S=$S
26
}
27
28
#mee_patch() {
29
# bee_patch "${@}"
30
#}
31
32
#mee_configure() {
33
# bee_configure
34
#}
35
36
#mee_build() {
37
# bee_build
38
#}
39
40
mee_install() {
41
start_cmd cp -r $S/etc $S/usr $D/
42
}
43
44
#mee_install_post() {
45
# exit
46
#}