mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
24 lines
716 B
Plaintext
24 lines
716 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=font-micro-misc
|
|
pkgver=1.0.0
|
|
pkgrel=3
|
|
pkgdesc="X.org misc font"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="custom"
|
|
depends="encodings font-alias mkfontscale mkfontdir fontconfig"
|
|
makedepends="pkgconfig font-util-dev bdftopcf"
|
|
install=
|
|
source="http://xorg.freedesktop.org/releases/individual/font/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--with-mapfiles=/usr/share/fonts/util \
|
|
--with-fontdir=/usr/share/fonts/misc
|
|
make || return 1
|
|
make -j1 DESTDIR="$pkgdir" MKFONTDIR=: MKFONTSCALE=: install || return 1
|
|
}
|
|
|
|
md5sums="8c8bffd7540f05caa0dbb4e6e1d6c58e font-micro-misc-1.0.0.tar.bz2"
|