forked from ports/contrib
16 lines
447 B
Plaintext
16 lines
447 B
Plaintext
# Description: Parse RSS and Atom feeds in Python
|
|
# URL: https://github.com/kurtmckee/feedparser
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: python-setuptools
|
|
|
|
name=feedparser
|
|
version=5.2.1
|
|
release=1
|
|
source=(https://github.com/kurtmckee/feedparser/archive/$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|