blob: 15f3ba777c9e16af49bab81fac24f17c02911f4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
makedepends=('python-setuptools')
depends=('python-socks' 'python-beautifulsoup4' 'python-markdown' 'python-wordpress-xmlrpc')
source=("git+https://github.com/black-desk/markpress#branch=master")
arch=('any')
pkgname='python-markpress-git'
pkgver=2.0.2.r0.g4c284b8
pkgrel=1
md5sums=('SKIP')
pkgver() {
cd markpress
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd markpress
python setup.py build
}
package() {
cd markpress
python setup.py install --root="$pkgdir" --optimize=1
}
|