wok-next view xorg-libX11/receipt @ rev 19733

Some receipts v2: apr, apr-util, aspell, at-spi2-core, at-spi2-atk, atk, atkmm, cairomm, colord, glibmm, libsigc++, libxslt.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 26 16:40:11 2017 +0300 (2017-05-26)
parents 4eab61ea2c5a
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libX11"
4 VERSION="1.6.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://www.x.org/wiki/"
10 HOST_ARCH="i486 arm"
12 TARBALL="libX11-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 DEPENDS="libxcb xorg-libXau xorg-libXdmcp"
16 BUILD_DEPENDS="xorg-xtrans libxcb-dev xorg-kbproto xorg-xf86bigfontproto \
17 xorg-inputproto xorg-xextproto xorg-libXau-dev xorg-libXdmcp-dev perl"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --disable-static \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
30 for i in $(find $install -name Compose); do
31 sed -i 's|\t| |g; s| *| |g; /^$/d' $i
32 done
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_files *.so* XErrorDB Xcms.txt compose.dir locale.alias locale.dir
39 cook_copy_folders C en_US.UTF-8
40 # split -> locale-* packages
41 }