wok-next view xorg-libXres/receipt @ rev 19988

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents f463de72afe3
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-libXres"
4 VERSION="1.0.7"
5 CATEGORY="x-window"
6 SHORT_DESC="X Resource extension"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 TARBALL="libXres-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
14 BUILD_DEPENDS="xorg-util-macros xorg-libX11-dev xorg-libXext-dev \
15 xorg-resourceproto"
16 SPLIT="xorg-libXres-dev"
17 PKG_RULE="std-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 case $PACKAGE in
33 *-libXres)
34 copy @std
35 DEPENDS="xorg-libxcb xorg-libX11 xorg-libXau xorg-libXdmcp \
36 xorg-libXext"
37 ;;
38 *-dev)
39 copy @dev
40 DEPENDS="xorg-libXres xorg-libxcb-dev xorg-libX11-dev \
41 xorg-libXau-dev xorg-libXdmcp-dev xorg-libXext-dev xorg-xproto"
42 ;;
43 esac
44 }