Packages adopted from wido
This commit is contained in:
commit
26a5a7831b
3 changed files with 37 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
@ -0,0 +1,14 @@
|
|||
pkgbase = xe
|
||||
pkgdesc = a Python library module designed to make it easy to work with XML
|
||||
pkgver = 0.7.4
|
||||
pkgrel = 1
|
||||
url = http://home.avvanta.com/~steveha/pyfeed.html
|
||||
arch = any
|
||||
license = BSD
|
||||
makedepends = python2
|
||||
depends = python2
|
||||
source = http://www.blarg.net/~steveha/xe-0.7.4.tar.gz
|
||||
md5sums = eff507b7a3700c93bd5ba756d4a6f457
|
||||
|
||||
pkgname = xe
|
||||
|
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
23
PKGBUILD
Normal file
23
PKGBUILD
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Maintainer: wido <widomaker2k7@gmail.com>
|
||||
|
||||
pkgname=xe
|
||||
pkgver=0.7.4
|
||||
pkgrel=1
|
||||
pkgdesc="a Python library module designed to make it easy to work with XML"
|
||||
url="http://home.avvanta.com/~steveha/pyfeed.html"
|
||||
arch=('any')
|
||||
depends=('python2')
|
||||
makedepends=('python2')
|
||||
license=('BSD')
|
||||
source=(http://www.blarg.net/~steveha/${pkgname}-${pkgver}.tar.gz)
|
||||
md5sums=('eff507b7a3700c93bd5ba756d4a6f457')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/${pkgname}-${pkgver}
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package(){
|
||||
cd ${srcdir}/${pkgname}-${pkgver}
|
||||
python2 setup.py install --root=${pkgdir}/
|
||||
}
|
Loading…
Reference in a new issue