summaryrefslogtreecommitdiff
path: root/terminus-font-patched/PKGBUILD
blob: f1130414ed4c8d064fbd9802c32d2577c1e204a4 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Original maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Kristoffer Fossgård <kfs1@online.no>
# Contributor: clonejo <clonejo@shakik.de>
# Contributor: Daniel Micay <danielmicay@gmail.com>
#
# This is the modified version of the original archlinux terminus-font
# to incorporate most of the patches that I find really useful:
# br1 just for the sake of it
# dv1 because handwritten versions in a computer font suck
# ij1 because и ≠ u, need a way to tell them apart
# ll2 because ilI1
# td1 because tilda should be in the middle

pkgname=terminus-font-patched
_pkgname=terminus-font
pkgver=4.47
pkgrel=1
pkgdesc='Monospace bitmap font (for X11 and console)'
arch=('any')
url='http://sourceforge.net/projects/terminus-font/'
license=('GPL2' 'custom:OFL')
makedepends=('xorg-bdftopcf' 'fontconfig' 'xorg-mkfontscale' 'xorg-mkfontdir' 'python3')
optdepends=('xorg-fonts-alias')
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
install='terminus-font-patched.install'
source=("http://downloads.sourceforge.net/project/$_pkgname/$_pkgname-$pkgver/$_pkgname-$pkgver.tar.gz")
provides=($_pkgname)
conflicts=($_pkgname)
sha256sums=('0f1b205888e4e26a94878f746b8566a65c3e3742b33cf9a4e6517646d5651297')

prepare() {
  chmod +x "$_pkgname-$pkgver/configure"
}

build() {
  cd "$_pkgname-$pkgver"
  patch -p0 -i alt/br1.diff
  patch -p0 -i alt/dv1.diff
  patch -p0 -i alt/ij1.diff
  patch -p0 -i alt/ll2.diff
  patch -p0 -i alt/td1.diff
  ./configure --prefix=/usr --x11dir=/usr/share/fonts/misc \
    --psfdir=/usr/share/kbd/consolefonts
  make
}

package() {
  make -C "$_pkgname-$pkgver" DESTDIR="$pkgdir" install

  install -Dm644 "$srcdir/$_pkgname-$pkgver/75-yes-terminus.conf" \
    "$pkgdir/etc/fonts/conf.avail/75-yes-terminus.conf"
  install -Dm644 "$srcdir/$_pkgname-$pkgver/OFL.TXT" \
    "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
  install -d "$pkgdir/etc/fonts/conf.d"

  cd "$pkgdir/etc/fonts/conf.d"
  ln -s ../conf.avail/75-yes-terminus.conf .
}

# getver: terminus-font.sf.net
# vim:set ts=2 sw=2 et: