blob: 92ce3046797e1c25203d42a8b735dba5efa5b768 (
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
|
# Maintainer: ahmedmoselhi
# Co-Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
# Contributor: raininja <dandenkijin ad gmail dot com>
# Contributor: eagleeyetom <eagleeyetom at gmail dot com>
# Contributor: dalto <dalto at fastmail dot com>
pkgname=slimjet
_pkgname="flashpeak-${pkgname}"
_libffmpegver=0.96.0
pkgver=45.0.2.0
pkgrel=2
pkgdesc="Fast, smart and powerful browser based on Blink.(Prebuilt version)"
arch=('x86_64')
url="https://www.slimjet.com"
_dlurl="https://www.slimjetbrowser.com"
_libffmpegverurl="https://github.com/nwjs-ffmpeg-prebuilt/nwjs-ffmpeg-prebuilt"
license=('LicenseRef-freeware')
depends=(
'alsa-lib'
'nspr'
'nss'
'at-spi2-core'
'libxrandr'
'libxcomposite'
'libxdamage'
'pango'
'cairo'
'mesa'
'libxkbcommon'
'libdrm'
'libcups'
)
optdepends=(
'kdialog: needed for file dialogs in KDE'
'ttf-liberation: fix fonts for some PDFs'
)
conflicts=(
"${pkgname}"
"${pkgname}-beta"
"${pkgname}35"
)
install="${pkgname}.install"
options=(
'!emptydirs'
'!strip'
)
source=(
"${pkgname}-${pkgver}.deb::${_dlurl}/release/${pkgname}_amd64.deb"
#"${pkgname}-${pkgver}.deb::${url}/release/${pkgname}_amd64.deb"
"libffmpeg-${_libffmpegver}.zip::${_libffmpegverurl}/releases/download/${_libffmpegver}/${_libffmpegver}-linux-x64.zip"
)
sha256sums=('c33279dcd9740e09bba609088ec3e608ca6ad68f9f84706ad3eeb7f770577c35'
'e5ea85ce5f1b1d99c7053b91d740fb302723764d3b7624fb461685f13b46776c')
prepare() {
bsdtar -xf "${srcdir}/data."*
bsdtar -xf "${srcdir}/control."*
sed -e "
s/\/usr\/bin\/${_pkgname}/${_pkgname}/g
s/Icon=${_pkgname}/Icon=${pkgname}/g
" -i "${srcdir}/usr/share/applications/${pkgname}.desktop"
find "${srcdir}" -type d -exec chmod 755 {} +
chmod 0755 "${srcdir}/opt/${pkgname}/${pkgname}-sandbox"
sed -i "s/opt\/${pkgname}/usr\/lib\/${pkgname}/g" "${srcdir}/usr/share/gnome-control-center/default-apps/${pkgname}.xml"
sed -i "s/opt\/${pkgname}/usr\/lib\/${pkgname}/g" "${srcdir}/usr/share/menu/${pkgname}.menu"
}
package() {
install -Dm755 -d "${pkgdir}/usr/"{bin,lib}
cp -Pr --no-preserve=ownership "${srcdir}/opt/${pkgname}" "${pkgdir}/usr/lib"
ln -sf "/usr/lib/${pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 "${srcdir}/libffmpeg.so" -t "${pkgdir}/usr/lib/${pkgname}"
install -Dm644 "${srcdir}/usr/share/applications/${pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 "${srcdir}/copyright" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
_icon_sizes=(16 22 24 32 48 64 128 256)
for _icons in "${_icon_sizes[@]}";do
install -Dm644 "${srcdir}/opt/${pkgname}/product_logo_${_icons}.png" \
"${pkgdir}/usr/share/icons/hicolor/${_icons}x${_icons}/apps/${pkgname}.png"
done
install -Dm644 "${srcdir}/usr/share/pixmaps/${pkgname}.xpm" -t "${pkgdir}/usr/share/pixmaps"
install -Dm644 "${srcdir}/usr/share/menu/${pkgname}.menu" -t "${pkgdir}/usr/share/menu"
install -Dm644 "${srcdir}/usr/share/gnome-control-center/default-apps/${pkgname}.xml" \
-t "${pkgdir}/usr/share/gnome-control-center/default-apps"
}
|