wok view libwnck/receipt @ rev 7315

Added openal to openal-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 17 17:45:48 2010 +0000 (2010-11-17)
parents a4cdfdba3408
children 5d23f675487c
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck"
4 VERSION="2.30.5"
5 CATEGORY="x-window"
6 SHORT_DESC="libwnck is Window Navigator Construction Kit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="expat gtk+ startup-notification xorg-libICE xorg-libSM xorg-libX11 \
9 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
10 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
11 BUILD_DEPENDS="perl-xml-parser gettext intltool xorg-dev gtk+-dev pkg-config"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/"
14 WGET_URL="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/2.30/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }