Initial import

This commit is contained in:
Pyrrha 2016-01-07 18:17:46 +10:00
commit 44cc45aa85
2 changed files with 46 additions and 0 deletions

24
.SRCINFO Normal file
View file

@ -0,0 +1,24 @@
# Generated by mksrcinfo v8
# Thu Jan 7 08:17:25 UTC 2016
pkgbase = plover
pkgdesc = Free and open source real-time stenography engine.
pkgver = 2.5.8
pkgrel = 1
url = https://www.openstenoproject.org
arch = any
license = GPLv2
depends = python2
depends = python2-setuptools
depends = wxpython
depends = python2-xlib
depends = wmctrl
depends = python2-simplejson
depends = python2-pyserial
depends = python2-appdirs
provides = plover
conflicts = plover-git
source = https://github.com/openstenoproject/plover/archive/v2.5.8.tar.gz
md5sums = 07baf37d3bd9b888ffe54fd598b93e10
pkgname = plover

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
pkgname=plover
pkgver=2.5.8
pkgrel=1
pkgdesc="Free and open source real-time stenography engine."
arch=(any)
url="https://www.openstenoproject.org"
license=('GPLv2')
groups=()
depends=('python2' 'python2-setuptools' 'wxpython' 'python2-xlib' 'wmctrl'
'python2-simplejson' 'python2-pyserial' 'python2-appdirs')
makedepends=()
provides=('plover')
conflicts=('plover-git')
backup=()
options=()
source=("https://github.com/openstenoproject/plover/archive/v$pkgver.tar.gz")
md5sums=('07baf37d3bd9b888ffe54fd598b93e10')
package() {
cd plover-$pkgver
python2 setup.py install --root="$pkgdir"
}