wok-next view xorg-font-misc-misc/receipt @ rev 21027

jwm: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 03 04:51:09 2018 +0200 (2018-11-03)
parents 02b674913611
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-font-misc-misc"
4 VERSION="1.1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Misc bitmap fixed fonts"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="PublicDomain"
9 WEB_SITE="https://www.x.org/wiki/"
10 HOST_ARCH="any"
11 REPOLOGY="font-misc-misc"
13 TARBALL="font-misc-misc-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/font/$TARBALL"
16 BUILD_DEPENDS="xorg-util-macros xorg-font-util-dev xorg-mkfontdir xorg-bdftopcf"
17 SPLIT="xorg-base-fonts $PACKAGE"
19 COOKOPTS="!gz" # too long
21 compile_rules() {
22 ./configure \
23 --disable-all-encodings \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 xorg-base-fonts)
32 copy 6x13.pcf.gz
33 CAT="x-window|minimal set"
34 DEPENDS=" "
35 ;;
36 *)
37 copy @std @rm
38 DEPENDS="xorg-base-fonts"
39 ;;
40 esac
41 TAGS="font"
42 }
44 post_install() {
45 chroot "$1/" fc-cache -r /usr/share/fonts/X11/misc
46 }
47 post_remove() {
48 chroot "$1/" fc-cache -r
49 }