2012-11-21 11:12:43 -06:00
|
|
|
# Description: A library for configuring and customizing font access
|
2020-06-18 20:19:16 -05:00
|
|
|
# URL: https://www.freedesktop.org/wiki/Software/fontconfig/
|
2013-02-01 19:09:37 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2019-08-27 21:48:19 +10:00
|
|
|
# Depends on: bzip2-32 expat-32 fontconfig freetype-32 util-linux-32
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=fontconfig-32
|
2018-09-02 18:53:29 +10:00
|
|
|
version=2.13.1
|
2013-03-04 21:01:01 -06:00
|
|
|
release=1
|
2017-07-30 00:40:18 +10:00
|
|
|
source=(https://fontconfig.org/release/fontconfig-$version.tar.bz2)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd fontconfig-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--with-xmldir=/etc/fonts \
|
|
|
|
--with-templatedir=/etc/fonts/conf.avail
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2016-07-30 15:52:10 +10:00
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share} $PKG/{etc,var}
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|