blob: c73edc1c0b80b3a596c5a9167c6e21963624d9a1 (
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: Jonas Bögle <aur@iwr.sh>
# Contributor: Jonathan Duck <duckbrain30@gmail.com>
pkgname=typora
pkgver=0.11.8
pkgrel=2
pkgdesc="A minimal markdown editor and reader."
arch=('x86_64')
filename="${pkgname}_${pkgver}_amd64.deb"
license=('custom:"Copyright (c) 2015 Abner Lee All Rights Reserved."')
url="https://typora.io/"
depends=('libxss')
optdepends=(
'noto-fonts-emoji: Or some other emoji font to see emojis'
'pandoc: Import/export for extra file formats')
source=("https://typora.io/linux/$filename")
sha512sums=('08d385582b799dd6c64e27ee33c1e2ef3cf497bcab2d8c1f3402fa496d83fbd94418170ed8a38ba5d81ebb790f35eb8969d8f295ce9a4625108a0af1bd33940e')
# Set the ELECTRON environment variable to "electron" to use the electron package instead of the shipped electron version.
# Warning: this is experimental and will probably break typora.
if [[ ! -z $ELECTRON ]]; then
depends+=($ELECTRON)
source+=(typora.js)
sha512sums+=('8ce47de8b0d0ab4b0323ee4c19a4daaf313513700d8c191faab299bfa21aaba9b55cbcf945914103e5f53607228fec3411a83aea8007b192616ad845a3af5c98')
fi
package() {
bsdtar -xf data.tar.xz -C "$pkgdir/"
rm -rf "$pkgdir/usr/share/lintian/"
chmod 4755 "$pkgdir/usr/share/typora/chrome-sandbox"
# Remove write permission for group/other
chmod -R go-w "$pkgdir/usr/share/typora/resources/node_modules"
sed -i '/Change Log/d' "$pkgdir/usr/share/applications/typora.desktop"
find "$pkgdir" -type d -exec chmod 755 {} \;
# Alternatively use the systems electron as described above.
if [[ ! -z $ELECTRON ]]; then
appdir="${pkgdir}/usr/share/typora"
mv "${appdir}" tmp/
mv tmp/resources/app "${appdir}"
rm -rf tmp/
install -Dm755 "typora.js" "${pkgdir}/usr/bin/typora"
fi
}
|