blob: 8c15eefe7e4303dc9ddba3cd4a75c3a76a3f400b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=set-unicoderange
pkgver=0.1.0
pkgrel=4
pkgdesc='automatically set OpenType OS/2 table Unicode range bit flags in fonts '
arch=(any)
url="https://github.com/source-foundry/$pkgname"
license=(Apache-2.0)
depends=(python
python-fonttools)
_archive="$pkgname-$pkgver"
source=("$url/archive/v$pkgver/$_archive.tar.gz")
sha256sums=('330cc50d36558b86f685a6f3fbea1b3d31990bf06bb7c9e5ad9fadf64d649bd1')
package() {
cd "$_archive"
install -Dm0755 -t "$pkgdir/usr/bin/$pkgname/" "src/$pkgname.py"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
}
|