blob: cb7dabc27c37077f830a1e20f01c97b1197de4f7 (
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
|
# 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}"
pkgver=46.0.3.0
_libffmpegver=0.100.1
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'
'libcups'
)
optdepends=(
'kdialog: needed for file dialogs in KDE'
'ttf-liberation: fix fonts for some PDFs'
)
conflicts=(
"${pkgname}"
"${pkgname}-beta"
"${pkgname}35"
)
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=('cd752e21eb2cd666b668efeeeac0372c9df101b944a98c599df33d5868c7d1e7'
'f97bd8f332bf1e5ac4f1d89f78c9dcfac9b2dbec9d02a29dfbb9d9d6c971e72e')
prepare() {
bsdtar -xf "${srcdir}/data."*
bsdtar -xf "${srcdir}/control."*
sed -i -e "
s/\/usr\/bin\/${_pkgname}/${_pkgname}/g
s/Icon=${_pkgname}/Icon=${pkgname}/g
" "${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"
}
|