Packages adopted from wido

This commit is contained in:
Antoine Lubineau 2011-11-11 12:33:43 +01:00
commit 3329337820
3 changed files with 38 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = pyfeed
pkgdesc = modules contain tools for working with syndication feeds.
pkgver = 0.7.4
pkgrel = 1
url = http://home.avvanta.com/~steveha/pyfeed.html
arch = any
license = BSD
makedepends = python2
depends = python2
depends = xe
source = http://www.blarg.net/~steveha/pyfeed-0.7.4.tar.gz
md5sums = 07fda8dba48367d63bfc12ba01e90ec8
pkgname = pyfeed

0
.gitignore vendored Normal file
View file

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: wido <widomaker2k7@gmail.com>
pkgname=pyfeed
pkgver=0.7.4
pkgrel=1
pkgdesc="modules contain tools for working with syndication feeds."
url="http://home.avvanta.com/~steveha/pyfeed.html"
arch=('any')
depends=('python2' 'xe')
makedepends=('python2')
license=('BSD')
source=(http://www.blarg.net/~steveha/${pkgname}-${pkgver}.tar.gz)
md5sums=('07fda8dba48367d63bfc12ba01e90ec8')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
python2 setup.py build
}
package(){
cd ${srcdir}/${pkgname}-${pkgver}
python2 setup.py install --root=${pkgdir}/
}