wok-next view xorg-libXfont2/receipt @ rev 20975

Close the chain: python and python3 both have upgradeable setuptools and pip
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Sep 23 04:37:56 2018 +0300 (2018-09-23)
parents e7a485521d6a
children f48456621a9d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-libXfont2"
4 VERSION="2.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X font2 handling library for server & utilities"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/x7lib.html"
11 REPOLOGY="libxfont2"
13 TARBALL="libXfont2-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
16 BUILD_DEPENDS="xorg-util-macros freetype-dev xorg-xtrans \
17 xorg-xorgproto xorg-libfontenc-dev"
18 SPLIT="xorg-libXfont2-dev"
20 compile_rules() {
21 ./configure $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 *-libXfont2)
30 copy @std
31 DEPENDS="freetype xorg-libfontenc zlib"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="xorg-libXfont2 \
36 freetype-dev xorg-xorgproto xorg-libfontenc-dev \
37 zlib-dev"
38 ;;
39 esac
40 }