Skip to content
Permalink
3e764aeff1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 28 lines (19 sloc) 749 Bytes
#!/usr//bin/env beesh
# BEE_VERSION fontconfig-2.12.1-0
SRCURL[0]="https://fontconfig.org/release/fontconfig-${PKGVERSION}.tar.gz"
mee_configure() {
bee_configure \
--disable-docs
}
mee_install_post() {
ln -vs ${DATADIR}/fontconfig/conf.avail/25-unhint-nonlatin.conf ${D}${SYSCONFDIR}/fonts/conf.d/
mkdir -pv ${D}${MANDIR}/man{1,3,5}
install -v -m644 ${S}/fc-*/*.1 ${D}${MANDIR}/man1
install -v -m644 ${S}/doc/*.3 ${D}${MANDIR}/man3
install -v -m644 ${S}/doc/fonts-conf.5 ${D}${MANDIR}/man5
mkdir -pv ${D}${DOCDIR}/fontconfig-devel
install -v -m644 ${S}/doc/fontconfig-devel/* \
${D}${DOCDIR}/fontconfig-devel &&
install -v -m644 ${S}/doc/*.{pdf,sgml,txt,html} \
${D}${DOCDIR}
}