mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
618 B
Bash
22 lines
618 B
Bash
# Maintainer: Florian Léger <florian6 dot leger at laposte dot net>
|
|
|
|
plugrel=1
|
|
|
|
pkgname=pyrss2gen
|
|
pkgver=1.0.0
|
|
pkgrel=3
|
|
pkgdesc="A Python library for generating RSS 2.0 feeds."
|
|
arch=('any')
|
|
url='http://www.dalkescientific.com/Python/PyRSS2Gen.html'
|
|
license=('BSD')
|
|
depends=('python2')
|
|
makedepends=('python2-distribute')
|
|
source=("http://www.dalkescientific.com/Python/PyRSS2Gen-${pkgver}.tar.gz")
|
|
md5sums=('b37ed0c9cfa4438a73dbbb0207f3aff6')
|
|
|
|
build() {
|
|
cd "$srcdir/PyRSS2Gen-$pkgver"
|
|
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
python2 setup.py install --root="$pkgdir" || return 1
|
|
}
|
|
|