blob: dfc3d02654cf0ebf6432a029816937f2d05edb97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
pkgname=fonts-tlwg
pkgver=0.7.3
pkgrel=1
pkgdesc='Collection of scalable Thai fonts'
url='https://github.com/tlwg/fonts-tlwg/'
arch=('any')
license=('GPL' 'custom')
makedepends=('fontforge')
source=("https://github.com/tlwg/fonts-tlwg/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha1sums=('8c2b7878d9272573125b49ba2f3929154d291cb4')
conflicts=('ttf-tlwg')
provides=('ttf-tlwg')
replaces=('ttf-tlwg')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--enable-ttf \
--disable-otf \
--with-ttfdir=/usr/share/fonts/TTF
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
mkdir -p "${pkgdir}"/etc/fonts
mv "${pkgdir}"/usr/share/fontconfig/conf.avail "${pkgdir}"/etc/fonts
rm -r "${pkgdir}"/usr/share/fontconfig
install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
}
|