wok-next view xorg-xfs/receipt @ rev 20495

make-slitaz-icons: fix previous commit
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 14 03:16:12 2018 +0200 (2018-03-14)
parents ea3c4b76ea5d
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xfs"
4 VERSION="1.1.4"
5 CATEGORY="x-window"
6 SHORT_DESC="X Font Server"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 TARBALL="xfs-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
14 BUILD_DEPENDS="xorg-util-macros xorg-font-util-dev xorg-xproto \
15 xorg-libXfont-dev xorg-xtrans"
16 PKG_RULE="std"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 touch /root/missing /missing
23 ./configure \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 copy @std
35 DEPENDS="xorg-libXfont"
36 CONFIG_FILES="/etc/X11/fs/config"
37 }