diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/python2-fonttools/PKGBUILD | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/python2-fonttools/PKGBUILD')
-rw-r--r-- | community/python2-fonttools/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/community/python2-fonttools/PKGBUILD b/community/python2-fonttools/PKGBUILD deleted file mode 100644 index 424946513..000000000 --- a/community/python2-fonttools/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 93407 2013-07-03 09:46:05Z aginiewicz $ -# Maintainer: Andrzej Giniewicz <gginiu@gmail.com> -# Contributor: Firmicus <firmicus āt gmx dōt net> - -pkgname=python2-fonttools -pkgver=2.4 -pkgrel=1 -pkgdesc="Converts OpenType and TrueType fonts to and from XML" -url="http://sourceforge.net/projects/fonttools/" -license=("BSD") -arch=('i686' 'x86_64') -depends=("python2-numpy") -makedepends=("python2-distribute") -provides=('fonttools') # temporary compatibility because of rename -replaces=('fonttools') -source=(http://downloads.sourceforge.net/fonttools/fonttools-$pkgver.tar.gz) -md5sums=('41b2d2be48214d2af848e04fded54689') - -build() { - cd "$srcdir"/fonttools-$pkgver - - python2 setup.py build -} - -package() { - cd "$srcdir"/fonttools-$pkgver - - python2 setup.py install --root="$pkgdir" --optimize=1 - - install -D -m755 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - chmod oga+r "$pkgdir"/usr/share/man/man1/ttx.1 - sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ - $(find "${pkgdir}" -name '*.py') -} - |