Created
October 4, 2014 07:10
-
-
Save axper/ab9a99f619e71c28b51b to your computer and use it in GitHub Desktop.
pylzma PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Penguin <TGates81.at.gmail.dot.com> | |
# Contributor: Babken Vardanyan <483ken 4T gma1l | |
pkgname=pylzma | |
pkgver=0.4.5 | |
pkgrel=1 | |
pkgdesc="Platform independent python bindings for the LZMA compression library" | |
url="http://www.joachim-bauch.de/projects/python/pylzma" | |
license=('LGPL') | |
arch=('i686' 'x86_64') | |
depends=('python2') | |
source=("http://pypi.python.org/packages/source/p/pylzma/${pkgname}-${pkgver}.tar.gz") | |
md5sums=('4fda4666c60faa9a092524fdda0e2f98') | |
package() { | |
cd "${srcdir}/${pkgname}-${pkgver}" | |
python2 setup.py install --root="${pkgdir}" | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment