Created
October 15, 2018 16:59
-
-
Save marmistrz/f0ea7000b121fe6bad6c6b50f18256ae to your computer and use it in GitHub Desktop.
PKGBUILD for Mnemosyne 2.6.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Sam S. <smls75@gmail.com> | |
# Contributor: Nuno Araujo <nuno.araujo@russo79.com> | |
pkgname=mnemosyne | |
pkgver=2.6.1 | |
pkgrel=1 | |
pkgdesc="A flash-card tool with a sophisticated card review algorithm" | |
arch=('i686' 'x86_64') | |
url='http://www.mnemosyne-proj.org' | |
license=('GPL') | |
depends=('python-pyqt5' 'qt5-webengine' | |
'python-pillow' 'python-matplotlib' 'python-cherrypy' 'python-webob') | |
makedepends=('python-setuptools') | |
optdepends=('texlive-core: support for mathematical formulae in cards' | |
'ttf-ms-fonts: support for non-latin labels on statistic plots' | |
'python-cheroot: support for starting a sync server') | |
conflicts=('mnemosyne-bzr') | |
install='mnemosyne.install' | |
source=("http://downloads.sourceforge.net/mnemosyne-proj/Mnemosyne-${pkgver}.tar.gz") | |
sha256sums=('6331241bc7caf26fed2e4d32c3c18da33116389b67af621da679a950f08c9c75') | |
build() { | |
cd "Mnemosyne-${pkgver}/" | |
python setup.py build | |
} | |
package() { | |
cd "Mnemosyne-${pkgver}/" | |
python setup.py install --root="${pkgdir}" --optimize=1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment