blob: 5109633cf4560d7e782a7af27576006950dc0251 (
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
|
# Maintainer: Andrey Kolchenko <andrey@kolchenko.me>
pkgname=stashpad
pkgver=1.2.28
pkgrel=2
pkgdesc='Stashpad is the developer notepad.'
arch=('x86_64')
url='https://www.stashpad.com/'
license=('proprietary')
depends=()
makedepends=(
'grep'
'curl'
'coreutils'
'imagemagick'
)
_file="${pkgname}_${pkgver}"
source=("${_file}::https://github.com/stashpad/sp-desktop-release/releases/download/v${pkgver}/Stashpad.AppImage")
sha256sums=('a504b6ef4281f4ebf03f93c9b7f694dcd9e4778b8293cfab8d1a60ded0a1cbea')
prepare() {
chmod +x "${srcdir}/${_file}"
"${srcdir}/${_file}" --appimage-extract
}
package() {
install -m 644 -d "${pkgdir}/opt/${pkgname}"
cd "${srcdir}/squashfs-root"
rm -f AppRun chrome-sandbox
sed -E -i 's#Exec=[^\n]+#Exec=/opt/stashpad/stashpad --enable-features=UseOzonePlatform --ozone-platform-hint=auto %U#' stashpad.desktop
install -m 644 -D -t "${pkgdir}/usr/share/applications/" stashpad.desktop
rm -f stashpad.desktop
install -m 644 -D -t "${pkgdir}/usr/share/icons/hicolor/0x0/apps" stashpad.png
cp -r . "${pkgdir}/opt/${pkgname}/"
chmod a+x "${pkgdir}/opt/${pkgname}/"
cd "${pkgdir}/opt/${pkgname}"
ln -f -s "/usr/share/icons/hicolor/0x0/apps/stashpad.png" stashpad.png
chmod -R a+rx locales resources
generate_icon 48
generate_icon 64
generate_icon 192
generate_icon 256
generate_icon 384
}
generate_icon() {
convert -resize "$1x$1" "${srcdir}/squashfs-root/stashpad.png" icon.png
install -m 644 -D icon.png "${pkgdir}/usr/share/icons/hicolor/$1x$1/apps/stashpad.png"
rm -f icon.png
}
|