blob: f8b5f860e882676af747d2fafb656123dbcdb489 (
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
|
# Maintainer: elementh <hello@lucasmarino.me>
pkgname=anytype-bin
pkgver=0.45.3
pkgrel=1
pkgdesc="Operating environment for the new internet. Anytype is a next generation software that breaks down barriers between applications, gives back privacy and data ownership to users."
arch=('x86_64')
url="https://anytype.io/"
license=('custom')
depends=('fuse')
options=(!strip !debug)
optdepends=('org.freedesktop.secrets: for not having to sign in each time')
provides=('anytype')
conflicts=('anytype'
'anytype-legacy')
_appimage="Anytype-${pkgver}.AppImage"
source=(
"Anytype-${pkgver}.AppImage::https://github.com/anyproto/anytype-ts/releases/download/v${pkgver}/Anytype-${pkgver}.AppImage"
"anytype.desktop"
"anytype.png"
)
noextract=("${_appimage}")
sha256sums=('c3a128767a64221e6d18148db7f40483b015caa1b4e466379c0ffcf05a46fe40'
'fe5e13adc759f7d93382733ba942b2a49f0ec4817a1be95e1ac6e7d1495002db'
'7967ea7a9c6237f7a3d32a6d352d1ac7b18fc29b329e662141bc21bf89d32939')
package() {
install -Dm755 $_appimage "$pkgdir"/usr/bin/anytype
chmod +x "${pkgdir}/usr/bin/anytype"
install -Dm644 "anytype.desktop" "${pkgdir}/usr/share/applications/anytype.desktop"
install -Dm644 "anytype.png" "${pkgdir}/usr/share/icons/hicolor/128x128/apps/anytype.png"
}
|