Initial upload: python-mpv-jsonipc 1.1.7-1

Add python-mpv-jsonipc
This commit is contained in:
Spencer Muise
2020-03-11 23:17:06 -03:00
commit 989ced2f88
2 changed files with 41 additions and 0 deletions

14
.SRCINFO Normal file
View File

@@ -0,0 +1,14 @@
pkgbase = python-mpv-jsonipc
pkgdesc = Python API to MPV using JSON IPC
pkgver = 1.1.7
pkgrel = 1
url = https://github.com/iwalton3/python-mpv-jsonipc
arch = any
license = GPL3
makedepends = python-setuptools
depends = python
source = python-mpv-jsonipc-1.1.7.tar.gz::https://github.com/iwalton3/python-mpv-jsonipc/archive/v1.1.7.tar.gz
md5sums = c4c9ae4e60033de02baee53a3692b0b9
pkgname = python-mpv-jsonipc

27
PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Spencer Muise <smuise@spencermuise.ca>
pkgname=python-mpv-jsonipc
pkgver=1.1.7
pkgrel=1
pkgdesc="Python API to MPV using JSON IPC"
arch=('any')
url='https://github.com/iwalton3/python-mpv-jsonipc'
license=('GPL3')
depends=(
'python'
)
makedepends=(
'python-setuptools'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/iwalton3/$pkgname/archive/v$pkgver.tar.gz")
md5sums=('c4c9ae4e60033de02baee53a3692b0b9')
build() {
cd $pkgname-$pkgver
python setup.py build
}
package() {
cd $pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}