mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 09:34:37 +08:00
27 lines
825 B
Bash
27 lines
825 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
#contributions from: https://www.https://www.archlinux.org/packages/extra/any/xorg-fonts-alias/
|
|
|
|
pkgname=xorg-fonts-alias
|
|
pkgver=1.0.3
|
|
pkgrel=1
|
|
pkgdesc="X.org font alias files"
|
|
arch=('any')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/font/font-alias-${pkgver}.tar.bz2 LICENSE)
|
|
md5sums=('6d25f64796fef34b53b439c2e9efa562'
|
|
'ff91ae6d96d76130482d04653e7a836a')
|
|
|
|
build() {
|
|
cd "${srcdir}/font-alias-${pkgver}"
|
|
./configure --prefix=/usr --with-fontrootdir=/usr/share/fonts
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/font-alias-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|