summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f8560a83973ae7921f6239ae377cb2563285c25 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Maintainer: taotieren <admin@taotieren.com>

pkgbase=hqdfm-wine
pkgname=hqdfm-wine
pkgver=4.0
pkgrel=0
pkgdesc="Wine 华秋 DFM 是一款高效的 PCB 设计软件,一键分析设计隐患,提供优化方案,输出 Gerber、BOM、坐标文件,让设计和制造更简单。"
arch=('x86_64')
url="https://dfm.elecfans.com"
license=('unknow')
provides=(${pkgname%-wine})
conflicts=(${pkgname%-wine})
replaces=()
depends=(
    bash
    hicolor-icon-theme
    wine
    wqy-microhei
    winetricks)
optdepends=()
makedepends=('libarchive')
backup=()
options=('!strip')
install=${pkgname}.install
source=(
        "${pkgname%-wine}-v${pkgver}.zip::${url}/uploads/software/HQDFM%20V${pkgver}.zip"
        "${pkgname}.install"
        "${pkgname%-wine}.png::${url}/static/images/dfm_logo.png")
sha256sums=('9324c17cef9bf3a70de1b5229b69b380d0c567b130f8006e1da47c045a6e5cfe'
            '18ba316bf686a95eda0ac51276965b6ba2a0c7093ed6c73484b3d226b5cb1085'
            '2fa20ad946fbf021b14d9493aad8b7af3d8829e71b0ca66316b2ee1065b66b15')
# noextract=("${pkgname%-wine}-v${pkgver}.zip"
#             "${pkgname%-wine}-tiny-v${pkgver}.zip")

# prepare() {
#     unar -e GBK "${srcdir}/${pkgname%-wine}-v${pkgver}.zip"
#     unar -e GBK "${srcdir}/${pkgname%-wine}-tiny-v${pkgver}.zip"
#     bsdtar -xf  "${srcdir}/${pkgname%-wine}-v${pkgver}.zip"
#     bsdtar -xf  "${srcdir}/${pkgname%-wine}-tiny-v${pkgver}.zip"
# }

package() {

    _pname="opt/hqfdm"
    _ftname="wqy-microhei.ttc"

    install -dm0755 "${pkgdir}/${_pname}/${pkgname%-wine}"
    install -Dm6644 "${srcdir}/${pkgname%-wine}.png" "${pkgdir}/usr/share/pixmaps/${pkgname%-wine}.png"

#     cp -ra "${srcdir}/${pkgname%-wine}-v${pkgver}.exe" "${pkgdir}/${_pname}/${pkgname%-wine}"
    cp -ra "${srcdir}/HQDFM Setup.exe" "${pkgdir}/${_pname}/${pkgname%-wine}/${pkgname%-wine}-v${pkgver}.exe"

#     find "${pkgdir}/${_pname}" -type f -exec chmod 644 "{}" \;
    find "${pkgdir}/${_pname}" -type d -exec chmod 755 "{}" \;

    install -Dm0644 /dev/stdin "${pkgdir}/${_pname}/${pkgname%-wine}/regpatch.reg" << EOF
REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink]
"Lucida Sans Unicode"="${_ftname}"
"Microsoft Sans Serif"="${_ftname}"
"MS Sans Serif"="${_ftname}"
"Tahoma"="${_ftname}"
"Tahoma Bold"="${_ftname}"
"SimSun"="${_ftname}"
"Arial"="${_ftname}"
"Arial Black"="${_ftname}"
"Lucida Sans Unicode"=str(7):"${_ftname}"
"Microsoft Sans Serif"=str(7):"${_ftname}"
"Tahoma"=str(7):"${_ftname}"
"Lucida Sans Unicode"="${_ftname}"
"Microsoft Sans Serif"="${_ftname}"
"Microsoft YaHei"="${_ftname}"
"微软雅黑"="${_ftname}"
"宋体"="${_ftname}"
"新細明體"="${_ftname}"
"DFKai-SB"="${_ftname}"
"FangSong"="${_ftname}"
"KaiTi"="${_ftname}"
"Microsoft JhengHei"="${_ftname}"
"Microsoft YaHei"="${_ftname}"
"MingLiU"="${_ftname}"
"NSimSun"="${_ftname}"
"PMingLiU"="${_ftname}"
"SimHei"="${_ftname}"
"SimKai"="${_ftname}"
"SimSun"="${_ftname}"

[HKEY_CURRENT_USER\Software\Wine\X11 Driver]
"ClientSideAntiAliasWithCore"="N"
"ClientSideAntiAliasWithRender"="N"
"ClientSideWithRender"="N"

[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
"FontSmoothingOrientation"=dword:00000001
"FontSmoothingType"=dword:00000002
"FontSmoothingGamma"=dword:00000578

EOF

    install -Dm0755 /dev/stdin "${pkgdir}/usr/bin/${pkgname%-wine}" << EOF
#!/bin/bash
export LC_CTYPE="zh_CN.UTF-8"
export WINEARCH=win64 WINEPREFIX="$HOME/.${pkgname%-wine}/wine"
export WINEDLLOVERRIDES="mscoree,mshtml=,winemenubuilder.exe=d"

if [ ! -d "$HOME"/.${pkgname%-wine} ] ; then
    mkdir -pv "$HOME"/.${pkgname%-wine}/wine || exit 1

    cp -rv /${_pname}/${pkgname%-wine}/regpatch.reg "$HOME"/.${pkgname%-wine}/wine || exit 1

    cp -rv /${_pname}/${pkgname%-wine}/${pkgname%-wine}-v${pkgver}.exe "$HOME"/.${pkgname%-wine}/${pkgname%-wine} || exit 1
fi

if [ ! -f "$HOME"/.${pkgname%-wine}/regpatchok ] ; then
    touch "$HOME"/.${pkgname%-wine}/regpatchok || exit 1
    cd "$HOME"/.${pkgname%-wine}/wine && regedit regpatch.reg && wineserver -k
    winetricks -q mfc42 vcrun2015 riched20
fi

wine "$HOME"/.${pkgname%-wine}/${pkgname%-wine} "\$@"
EOF

    install -Dm0644 /dev/stdin "${pkgdir}/usr/share/applications/${pkgname%-wine}.desktop" << EOF
[Desktop Entry]
Name=${pkgname%-wine}
Name[zh_CN]=${pkgname%-wine}
Comment=${pkgdesc}
#MimeType=application/x-${pkgname%-wine};
Exec=${pkgname%-wine} %f
Type=Application
Categories=Tool;PCB设计;PCB软件;PCB设计软件;DFM;
Terminal=false
Icon=${pkgname%-wine}
Version=${pkgver}
EOF
}