blob: 1ae7dbc129371a43fc988447182f6c2b5a3b3ebb (
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
|
# Maintainer: Lucas van Leijen <lvanl at tuta dot io>
# Maintainer: tee < teeaur at duck dot com >
pkgname=appflowy-bin
_pkgname=appflowy
pkgver=0.4.8
pkgrel=1
pkgdesc="AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations."
arch=(x86_64)
url="https://appflowy.io"
license=('AGPL')
provides=('appflowy')
conflicts=('appflowy')
depends=('xdg-user-dirs' 'gtk3' 'libkeybinder3' 'openssl-1.1')
_src="https://github.com/AppFlowy-IO/AppFlowy"
source=(
"${_src}/raw/$pkgver/LICENSE"
"${_src}/releases/download/$pkgver/AppFlowy-$pkgver-linux-$arch.deb")
b2sums=('6fa2a6adf165a614637f4aae5b323c427b99c2d13f9ab55eefae012dc3dbeebe5957cd2e2497e4c38426088a41dac89f6ac6284af6cf6a4a67a6780f409e8237'
'597e77f53061248e7a1aaed83c8fc1b0026e2b3a66734dfc11b9bcf356b956941656a395f37d5e90e0180d161fa7c43d49f6f3d4c08a2b2638f171d7f5227825')
package(){
cd "$pkgdir"
tar -xf "$srcdir"/data.tar.xz
install -Dm644 "$srcdir"/LICENSE -t "usr/share/licenses/$_pkgname"
sed -i "s;Icon=.*;Icon=appflowy;" "usr/share/applications/AppFlowy.desktop"
install -Dm644 "usr/lib/AppFlowy/data/flutter_assets/assets/images/flowy_logo.svg" \
"usr/share/icons/hicolor/scalable/apps/appflowy.svg"
install -Dm644 "usr/lib/AppFlowy/data/flutter_assets/assets/images/flowy_logo.svg" \
"usr/share/pixmaps/appflowy.svg"
mkdir usr/bin
ln -s "/usr/lib/AppFlowy/AppFlowy" -t "usr/bin/"
}
|