blob: 62625a8ff3e18300177fa32ab443ced19d73724b (
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
|
# Maintainer: Youngjae Lee <ls4154.lee@gmail.com>
pkgname=naver-whale-stable
pkgver=4.29.282.15
pkgrel=1
pkgdesc="The web browser from NAVER"
arch=("x86_64")
url="https://whale.naver.com"
license=("custom")
depends=(
'alsa-lib'
'gtk3'
'libcups'
'libxss'
'libxtst'
'nss'
'ttf-liberation'
'xdg-utils'
)
options=('!emptydirs' '!strip')
install=$pkgname.install
source=("https://repo.whale.naver.com/stable/deb/pool/main/n/naver-whale-stable/naver-whale-stable_${pkgver}-1_amd64.deb"
"naver-whale-stable.sh"
"LICENSE.html")
sha256sums=("6a54af0ded329addf6ffb7bf183ff411914d7f05acc35f7e8143fbcc25cf3de7"
"11522689f4c94ea86bc7e50feb48c6b823cb3cdb7bb04b565a0db2f12d25d9a5"
"ed82f8f83c93cbd468395cc80e3be7beb8a3f18bdf5770f165c348c15f7e5e84")
package() {
bsdtar -xf data.tar.xz -C "${pkgdir}/"
install -m755 naver-whale-stable.sh "${pkgdir}/usr/bin/naver-whale-stable"
install -Dm644 LICENSE.html "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.html"
for i in 16 24 32 48 64 128 256; do
install -Dm644 "${pkgdir}/opt/naver/whale/product_logo_${i}.png" \
"${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/naver-whale.png"
done
rm -r "${pkgdir}/etc/cron.daily/" \
"${pkgdir}/opt/naver/whale/cron/" \
"${pkgdir}/opt/naver/whale"/product_logo_*.{png,xpm} \
"${pkgdir}/usr/share/menu/"
}
|