wok view xorg-xdpyinfo/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents eb8067417980
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdpyinfo"
4 VERSION="1.3.2"
5 CATEGORY="x-window"
6 TAGS="utility xorg display"
7 SHORT_DESC="Display information utility for X-server."
8 MAINTAINER="jozee@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://www.x.org/wiki/"
12 SOURCE="xdpyinfo"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/app/$TARBALL"
16 DEPENDS="xorg-libXinerama xorg-libXp xorg-libXrender
17 xorg-libXtst xorg-libXxf86vm"
18 BUILD_DEPENDS="xorg-libXinerama-dev xorg-libXp-dev
19 xorg-libXrender-dev xorg-libXtst-dev xorg-libXxf86vm-dev"
21 # Rules to configure and make the package.ls sr
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }