diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-06-26 17:53:46 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-06-26 17:53:46 -0300 |
commit | e7c9588dd60ac9a5892fc83fbbdc0df88307f112 (patch) | |
tree | faf76617283f9ba67d8c1bcc68e1b7ca928cea7a /pcr/hachoir-core | |
parent | aa41b0f81387ce2adb44aaddbb2cefbbb7473f5e (diff) | |
parent | bd35fcd5ee95fb1f0a1d38410aee55ac914f8667 (diff) |
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/~git/abslibre
Diffstat (limited to 'pcr/hachoir-core')
-rw-r--r-- | pcr/hachoir-core/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pcr/hachoir-core/PKGBUILD b/pcr/hachoir-core/PKGBUILD new file mode 100644 index 000000000..618632915 --- /dev/null +++ b/pcr/hachoir-core/PKGBUILD @@ -0,0 +1,25 @@ +# Contributor: arno <apithon.AT.free.DOT.fr> +# Contributor: Pierre Bourdon <delroth@gmail.com> +# Maintainer: ianux <ianux AT free DOT fr> + +pkgname=hachoir-core +pkgver=1.3.3 +pkgrel=4 +pkgdesc="A library written in Python which allows to see and edit a binary files field per field." +arch=('any') +url="http://bitbucket.org/haypo/hachoir/wiki/Home" +license=('GPL2') +depends=('python2') +source=(http://cheeseshop.python.org/packages/source/h/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('b80f0257536e2b2cb23f66670c4f6f31') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + python2 setup.py build +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + python2 setup.py install --optimize=1 --root=${pkgdir} +} + |