blob: f7894ddbb58cb279a21ccc19971c1548c98e421b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Yufan You <ouuansteve at gmail>
pkgname=ttf-lxgw-wenkai
pkgver=1.501
pkgrel=1
pkgdesc="An open-source Chinese font derived from Fontworks' Klee One."
arch=('any')
url='https://github.com/lxgw/LxgwWenKai'
license=('OFL-1.1-RFN')
source=("$url/releases/download/v$pkgver/lxgw-wenkai-v$pkgver.tar.gz")
sha256sums=('ec1060e93189cd35600473f2cd36061635e689dbc0cce542580535d4bca59812')
package() {
cd "lxgw-wenkai-v$pkgver"
install -d "$pkgdir/usr/share/fonts/TTF"
cp *.ttf "$pkgdir/usr/share/fonts/TTF"
install -Dm644 "OFL.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|