37 lines
1001 B
Bash
37 lines
1001 B
Bash
# Template file for 'anki'
|
|
pkgname=anki
|
|
version=2.0.50
|
|
revision=1
|
|
noarch=yes
|
|
depends="python-PyQt4-webkit python-httplib2 python-SQLAlchemy"
|
|
pycompile_dirs="/usr/share/anki/anki /usr/share/anki/aqt"
|
|
short_desc="Spaced repetition flashcard program"
|
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
|
license="AGPL-3"
|
|
homepage="http://ankisrs.net"
|
|
distfiles="http://ankisrs.net/downloads/current/${pkgname}-${version}-source.tgz"
|
|
checksum=37b2c601762ea8bfc7b9fc3e3067b82b0ad48c27b58076f6fd636f52930b1816
|
|
|
|
do_install() {
|
|
vmkdir usr/share/anki
|
|
for f in anki aqt designer locale oldanki anki.xml; do
|
|
vcopy $f usr/share/anki
|
|
done
|
|
|
|
# thirdparty
|
|
vmkdir usr/share/anki/thirdparty
|
|
vcopy thirdparty/BeautifulSoup.py usr/share/anki/thirdparty
|
|
vcopy thirdparty/send2trash usr/share/anki/thirdparty
|
|
|
|
# icons
|
|
vmkdir usr/share/pixmaps
|
|
for p in anki.xpm anki.png; do
|
|
vcopy $p usr/share/pixmaps
|
|
done
|
|
vinstall anki.desktop 644 usr/share/applications
|
|
vbin runanki anki
|
|
vman anki.1
|
|
|
|
vlicense LICENSE
|
|
}
|