diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-06-26 12:05:34 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-06-26 12:05:34 -0300 |
commit | bd35fcd5ee95fb1f0a1d38410aee55ac914f8667 (patch) | |
tree | 604986977bda8abdc3441cb837421ea4028b126c /pcr/hachoir-core | |
parent | 5e8fd240f188ba2ba339d9fcbf54d1adcbfae649 (diff) | |
download | abslibre-bd35fcd5ee95fb1f0a1d38410aee55ac914f8667.tar.gz abslibre-bd35fcd5ee95fb1f0a1d38410aee55ac914f8667.tar.bz2 abslibre-bd35fcd5ee95fb1f0a1d38410aee55ac914f8667.zip |
mat: metadata anonymization toolkit
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} +} + |