first package version

This commit is contained in:
Cedric Girard 2015-11-16 12:39:18 +01:00
commit 83cd34cb77
2 changed files with 34 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
# Generated by mksrcinfo v8
# Mon Nov 16 11:38:51 UTC 2015
pkgbase = python2-pytvmaze
pkgdesc = Python interface to the TV Maze API
pkgver = 1.3.3
pkgrel = 1
url = http://pypi.python.org/pypi/pytvmaze
arch = any
license = MIT
makedepends = python2-distribute
depends = python2
source = http://pypi.python.org/packages/source/p/pytvmaze/pytvmaze-1.3.3.tar.gz
md5sums = f206c33864f0e52b164cb81c320e17c0
pkgname = python2-pytvmaze

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
pkgname=python2-pytvmaze
_pkgname=pytvmaze
pkgver=1.3.3
pkgrel=1
pkgdesc="Python interface to the TV Maze API "
arch=(any)
url="http://pypi.python.org/pypi/pytvmaze"
license=(MIT)
depends=(python2)
makedepends=(python2-distribute)
source=("http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
md5sums=('f206c33864f0e52b164cb81c320e17c0')
package() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --root="$pkgdir/" --optimize=1
}