blob: 261260a68c5392b25e8fa6a65dd16bd1d9944d64 (
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
|
# Maintainer: Feakster <feakster at posteo dot eu>
### Info ###
pkgname=simplenote-electron-arm-bin
_pkgname=${pkgname%-electron-arm-bin}
pkgver=2.5.0
_appimage="simplenote-electron-${pkgver}-${CARCH}.AppImage"
pkgrel=4
pkgdesc='The simplest way to keep notes'
arch=('armv7h' 'aarch64')
url='https://github.com/Automattic/simplenote-electron'
license=('GPL2')
depends=('gtk3' 'hicolor-icon-theme' 'libxss' 'mesa' 'nss')
optdepends=(
'libnotify: desktop notifications'
'noto-fonts-emoji: emoji support'
'ttf-joypixels: emoji support'
)
makedepends=('zlib')
provides=('simplenote')
options=(!strip)
install="$pkgname.install"
source_armv7h=("simplenote-electron-${pkgver}-armv7h.AppImage"::"${url}/releases/download/v${pkgver}/Simplenote-linux-${pkgver}-armv7l.AppImage")
source_aarch64=("simplenote-electron-${pkgver}-aarch64.AppImage"::"${url}/releases/download/v${pkgver}/Simplenote-linux-${pkgver}-arm64.AppImage")
noextract=($_appimage)
b2sums_armv7h=('23da95334418715375f484e1549dcd8a4107f07fa963053045701b16b8b5ba5b26afac25e0ccd0401895828a30db4c8d40d8b77a61193825fca04918184ff7fa')
b2sums_aarch64=('f28a8f71b80c2e17d531cb860708f6ca441a0c27c214b30daf96d5eb138f93f070090e30dee7a7c485556a5f33f2c8fb3d6bc0afc9da6fd0ebc1bd6f69db98d1')
### Prepare ###
prepare() {
## Change Directory ##
cd "$srcdir"
## Mark AppImage as Executable ##
chmod a+x $_appimage
## Extract AppImage into squashfs-root Directory ##
./$_appimage --appimage-extract
## Remove Unneccessary Directories/Files ##
rm squashfs-root/AppRun
rm squashfs-root/$_pkgname.png
rm squashfs-root/.DirIcon
## Fix Permissions ##
find squashfs-root -type d -exec chmod 0755 {} \;
find squashfs-root -type f -name '*.so' -exec chmod 0644 {} \;
## Modify Desktop File ##
sed -i \
-e "s|^Exec=AppRun$|Exec=/usr/bin/${_pkgname}|" \
-e '/^X-AppImage-Version=.*/d' \
-e '/^Path=.*/d' \
squashfs-root/${_pkgname}.desktop
echo "Path=/opt/${_pkgname}" >> squashfs-root/${_pkgname}.desktop
}
### Package ###
package() {
## Change Directory ##
cd "$srcdir"
## Move AppImage Contents to /opt/$_pkgname ##
install -dm0755 "$pkgdir"/opt/$_pkgname
cp -RT squashfs-root "$pkgdir"/opt/$_pkgname
## Executable Binary ##
install -dm0755 "$pkgdir"/usr/bin
ln -s \
/opt/$_pkgname/$_pkgname \
"$pkgdir"/usr/bin/$_pkgname
## Replace Shared Objects with Symlinks ##
for SO in EGL GLESv2 vulkan
do
ln -fs \
/usr/lib/${SO}.so \
"$pkgdir"/opt/$_pkgname/lib${SO}.so
done
## Install Icons ##
for SIZE in 16 32 48 64 128 256 512 1024
do
install -dm0755 "$pkgdir"/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps
ln -s \
/opt/$_pkgname/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/${_pkgname}.png \
"$pkgdir"/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/${_pkgname}.png
done
## Desktop Icon ##
install -dm0755 "$pkgdir"/usr/share/applications
ln -s \
/opt/$_pkgname/${_pkgname}.desktop \
"$pkgdir"/usr/share/applications/${_pkgname}.desktop
## Licenses ##
install -dm0755 "$pkgdir"/usr/share/licenses/$pkgname
ln -s \
/opt/$_pkgname/LICENSE.electron.txt \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.electron.txt
ln -s \
/opt/$_pkgname/LICENSES.chromium.html \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSES.chromium.html
}
|