blob: cdb110ebc89433e88313accca1f89e2deede1b22 (
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
|
# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
_pkgname=dehelper
pkgname="eusoft-${_pkgname}-bin"
pkgver=2023.12.19
pkgrel=1
pkgdesc="德语助手,权威的德语词典软件,德语学习者必备的工具.支持学习笔记、生词本多平台同步,让你随时随地学德语."
arch=('x86_64')
url="https://www.godic.net/"
license=('custom')
conflicts=(
"${pkgname%-bin}"
"${_pkgname}"
)
depends=(
'pango'
'e2fsprogs'
'taglib'
'libvorbis'
'nss'
'speex'
'libjpeg-turbo'
'gdk-pixbuf2'
'clutter'
'v4l-utils'
'harfbuzz'
'lame'
'libxdamage'
'gst-plugins-base-libs'
'clutter-gst'
'libsoup'
'expat'
'libogg'
'libpng'
'gmp'
'libthai'
'mesa'
'gst-plugins-bad-libs'
'libgudev'
'gstreamer'
'libiec61883'
'cairo'
'libavc1394'
'libpulse'
'util-linux-libs'
'fontconfig'
'libtheora'
'bzip2'
'libx11'
'libdrm'
'libdv'
'pipewire-jack'
'libgpg-error'
'libxfixes'
'mpg123'
'cdparanoia'
'orc'
'libxext'
'graphene'
'libxv'
'libp11-kit'
'alsa-lib'
'libraw1394'
'libglvnd'
'freetype2'
'gtk3'
'libxcb'
'opus'
'openssl-1.0'
)
options=("!strip")
source=(
"${pkgname%-bin}-${pkgver}.deb::https://www.eudic.net/download/${_pkgname}.deb?v=${pkgver//./-}"
"LICENSE.html"
"${pkgname%-bin}.sh"
)
sha256sums=('fc47e56b3907522a8d3dbd906a4e4117991e0aed772c08547b0214c8b08fcccc'
'69031e95591a339c4cd9c01547494e23196cea6438608f1f951b493ea8fca54f'
'e45be7ca2043991bbfea6c9a83e9a324fba6058fa575d53a071274fc824b07fc')
build() {
sed -e "s|@appname@|${pkgname%-bin}|g" \
-e "s|@appasar@|${_pkgname}|g" \
-i "${srcdir}/${pkgname%-bin}.sh"
bsdtar -xf "${srcdir}/data.tar.xz"
sed "s|/usr/share/${pkgname%-bin}/AppRun|${pkgname%-bin}|g;s|com.eusoft.${_pkgname}|${pkgname%-bin}|g" \
-i "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop"
}
package() {
install -Dm755 "${srcdir}/${pkgname%-bin}.sh" "${pkgdir}/usr/bin/${pkgname%-bin}"
install -Dm755 -d "${pkgdir}/opt"
cp -r "${srcdir}/usr/share/${pkgname%-bin}" "${pkgdir}/opt"
install -Dm644 "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 "${srcdir}/usr/share/pixmaps/com.eusoft.${_pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname%-bin}.png"
install -Dm644 "${srcdir}/LICENSE.html" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|