wok-next annotate xorg-libXft/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 cd7906120828
children f48456621a9d
rev   line source
al@19805 1 # SliTaz package receipt v2.
pankso@20 2
pankso@20 3 PACKAGE="xorg-libXft"
al@19637 4 VERSION="2.3.2"
pankso@20 5 CATEGORY="x-window"
al@19805 6 SHORT_DESC="Client side font rendering library"
pankso@20 7 MAINTAINER="pankso@slitaz.org"
al@19805 8 LICENSE="MIT"
al@19637 9 WEB_SITE="https://www.x.org/wiki/"
al@20443 10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/x7lib.html"
al@20888 11 REPOLOGY="libxft"
al@19637 12
al@19637 13 TARBALL="libXft-$VERSION.tar.bz2"
pankso@20 14 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pankso@20 15
al@14646 16 BUILD_DEPENDS="xorg-libXrender-dev freetype-dev fontconfig-dev libxml2-dev"
al@19805 17 SPLIT="xorg-libXft-dev"
pankso@12513 18
al@20443 19 compile_rules() {
al@20534 20 ./configure $CONFIGURE_ARGS &&
al@20443 21 fix libtool &&
al@14646 22 make &&
al@14646 23 make install
pankso@20 24 }
pankso@20 25
al@20443 26 genpkg_rules() {
al@19805 27 case $PACKAGE in
al@19805 28 *-libXft)
al@19805 29 copy @std
al@20443 30 DEPENDS="fontconfig freetype xorg-libX11 xorg-libXrender"
al@19805 31 ;;
al@19805 32 *-dev)
al@19805 33 copy @dev
al@20443 34 DEPENDS="xorg-libXft \
al@20935 35 fontconfig-dev freetype-dev xorg-libXrender-dev xorg-xorgproto"
al@19805 36 ;;
al@19805 37 esac
pankso@20 38 }