mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
721 B
Bash
21 lines
721 B
Bash
|
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
|||
|
# Contributor: Kristoffer Fossg<73>rd <kfs1@online.no>
|
|||
|
pkgname=terminus-font
|
|||
|
pkgver=4.28
|
|||
|
pkgrel=1
|
|||
|
pkgdesc="A superb, monospace bitmap font (for X11 and console)"
|
|||
|
depends=(xorg-fonts-encodings xorg-fonts-alias xorg-font-utils fontconfig)
|
|||
|
replaces=(xserver-terminus-fonts)
|
|||
|
arch=(i686 x86_64)
|
|||
|
source=(http://www.is-vn.bg/hamster/$pkgname-$pkgver.tar.gz)
|
|||
|
url="http://www.is-vn.bg/hamster/jimmy-en.html"
|
|||
|
install=terminus-font.install
|
|||
|
license=('GPL-2')
|
|||
|
md5sums=('15bf2f17b625312383fd9dae0925a17e')
|
|||
|
|
|||
|
build() {
|
|||
|
cd $startdir/src/$pkgname-$pkgver
|
|||
|
./configure --prefix=/usr --x11dir=/usr/share/fonts/local/ --psfdir=/usr/share/kbd/consolefonts/
|
|||
|
make DESTDIR=$startdir/pkg install
|
|||
|
}
|