wok view xorg-xwininfo/receipt @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents eb8067417980
children 87646c0eaba7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xwininfo"
4 VERSION="1.1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="window information utility to query x-server"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xwininfo"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://xorg.freedesktop.org/"
12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
13 TAGS="util xorg windows"
14 HOST_ARCH="i486 arm"
16 DEPENDS="xorg-libX11"
17 BUILD_DEPENDS="xorg-libX11-dev"
19 # Rules to configure and make the package.ls sr
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --prefix=/usr \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }