mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 03:42:37 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-feedparser
|
|
_pkgname=feedparser
|
|
pkgver=5.1.3
|
|
pkgrel=0
|
|
pkgdesc="A Python feed parser for RSS and Atom"
|
|
url="http://code.google.com/p/feedparser/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="f2253de78085a1d5738f626fcc1d8f71 feedparser-5.1.3.tar.gz"
|
|
sha256sums="ad543639e89d43685e2f1d3b6e48711562eec3be379e6958a920fbeaf4c63bce feedparser-5.1.3.tar.gz"
|
|
sha512sums="17cb98c9585a20c40365be96413f117009c0df8be8773c4086cecb75d28128e9a97727c2581af0082d0a4dad7df6091e6f6ca33483e2c685494243a3ad8cf9ba feedparser-5.1.3.tar.gz"
|