summaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: a777bb56e239a1f8ceb111fc14ad6863df63a897 (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Kuklin István <kuklinistvan@zoho.com>
pkgname=anki-official-binary-bundle
pkgver=2.1.11
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=()
makedepends=()
checkdepends=()
optdepends=()
provides=('anki')
conflicts=('anki-git')
replaces=()
backup=()
options=()
install=
changelog=
topdirname="anki-$pkgver-linux-amd64"
source=("https://apps.ankiweb.net/downloads/current/${topdirname}.tar.bz2" "remove_xdg_cmds_from_makefile.patch" "prefix-fix.patch")
noextract=()
md5sums=('a1ef83b3f87bf9f3cf6712e6dc06eaf8' 'afe8bbf18d0b50e57c84208936382fe6'
 '7c90eebb0ac94923125d3f4d35e7b37d')
validpgpkeys=()

prepare() {
	cd "$srcdir"
    patch -p0 -i remove_xdg_cmds_from_makefile.patch
    patch -p0 -i prefix-fix.patch
}

build() {
	cd "$topdirname"
	make
}

package() {
	cd "$topdirname"
	make PREFIX="$pkgdir/usr/" install
}