wok view xorg-libXfont2/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfont2"
4 VERSION="2.0.4"
5 CATEGORY="x-window"
6 SHORT_DESC="X font Library."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="libXfont2"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 DEPENDS="bzlib freetype xorg-libfontenc"
16 BUILD_DEPENDS="bzip2-dev freetype-dev xorg-fontsproto
17 xorg-libfontenc-dev xorg-xtrans zlib-dev"
19 HOST_ARCH="i486 arm"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --sysconfdir=/etc \
26 --localstatedir=/var \
27 --disable-static \
28 --disable-devel-docs \
29 $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }