blob: 2aca5b60fc5173c674aa6bdac064cbde5d20e835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Johannes Löthberg <johannes2kyriasis.com>
pkgname=python-pafy-git
pkgver=git
pkgrel=1
pkgdesc="Python API for YouTube - Download videos and retrieve metadata from YouTube."
arch=('any')
url="http://np1.github.io/pafy"
license=('GPL3')
depends=('python')
conflicts=('python-pafy')
source=('git+https://github.com/np1/pafy.git')
md5sums=('SKIP')
pkgver() {
cd pafy
git describe --long --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
package() {
cd pafy
python setup.py install --root="$pkgdir" --optimize=1
}
|