blob: 3d072c7251ddc8c61b40f384c30bd8e7228cf5a7 (
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: Kuklin István <kuklinistvan@zoho.com>
# Maintainer: Aria Moradi <aria.moradi007 at zoho dot com>
pkgname=anki-official-binary-bundle
pkgver=2.1.58
pkgrel=1
epoch=
pkgdesc="The official binary shipped with the tested versions of the dependent libraries."
arch=('x86_64')
url="https://apps.ankiweb.net"
license=('GNU AGPL')
groups=()
depends=('libxkbcommon-x11')
makedepends=()
checkdepends=()
optdepends=('mpv')
provides=('anki')
conflicts=('anki' 'anki-git')
replaces=()
backup=()
options=()
install=$pkgname.install
changelog=
topdirname="anki-$pkgver-linux-qt6"
source=(
"https://github.com/ankitects/anki/releases/download/${pkgver}/${topdirname}.tar.zst"
"install_sh.patch"
)
noextract=()
sha256sums=('f6b94d4a16dda2c09aeb47f8265842d78765de3d83c6a16bdc680e38c59d5c56'
'991297cb02434d753f55980205a22971ed98655b0f62f0104ae4692155355d8c')
validpgpkeys=()
prepare() {
cd "$srcdir"/"$topdirname"
patch install.sh ../install_sh.patch
}
package() {
cd "$topdirname"
PREFIX="$pkgdir"/usr/ ./install.sh
}
|