mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
32 lines
790 B
Plaintext
32 lines
790 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=font-util
|
|
pkgver=1.3.1
|
|
pkgrel=2
|
|
pkgdesc="X.org font utilities"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="custom"
|
|
options="!check" # No test suite.
|
|
depends="perl"
|
|
depends_dev="font-util"
|
|
makedepends="$depends_dev util-macros"
|
|
install=
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://www.x.org/releases/individual/font/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="9fd6dd4c0a01ede5f0b09ec0f9d316267ca086e2ee9526a43a4e4d6ce3cd67c977293bd3cf440328ca417292fcae1579888b24b7259eaf012230890210d74889 font-util-1.3.1.tar.bz2"
|