mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer:
|
|
pkgname=py-fonttools
|
|
pkgver=3.21.2
|
|
pkgrel=2
|
|
pkgdesc="Converts OpenType and TrueType fonts to and from XML"
|
|
url="https://github.com/fonttools/fonttools"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="py-numpy>=1.14.3-r1"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
install=""
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3 $pkgname-doc"
|
|
source="py-fonttools-$pkgver.tar.gz::https://github.com/fonttools/fonttools/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/fonttools-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build || return 1
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"/usr/bin/
|
|
local name; for name in fonttools pyftinspect pyftmerge pyftsubset ttx; do
|
|
ln -s $name-3 "$pkgdir"/usr/bin/$name || return 1
|
|
done
|
|
|
|
cd "$builddir"
|
|
for man in Doc/man/man1/*.?; do
|
|
install -Dm644 "$man" \
|
|
"$pkgdir"/usr/share/man/man${man##*.}/${man##*/} || return 1
|
|
done
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
local pyver="${1:6:1}"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr \
|
|
--root="$subpkgdir" || return 1
|
|
|
|
# Add version suffix to executable files.
|
|
local path; for path in "$subpkgdir"/usr/bin/*; do
|
|
mv "$path" "$path-$pyver" || return 1
|
|
done
|
|
|
|
# Remove man pages and ship them in the -doc subpackage.
|
|
rm -rf "$subpkgdir"/usr/share/man/
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
}
|
|
|
|
sha512sums="64ee4043f35cae39b0d4a00a5445dffa5afebda9c5571f204b909f91d640bc07c7a3c464430da3b9d36e1c9dd2fd14ae547db48cc00cc5b0da39099cb4d7cbb9 py-fonttools-3.21.2.tar.gz"
|