wok view openal/receipt @ rev 4136

Up: xfce-utils (4.6.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:30:07 2009 +0000 (2009-09-20)
parents
children 6ec17b55b59a
line source
1 # SliTaz package receipt.
3 PACKAGE="openal"
4 SOURCE="openal-soft"
5 VERSION="1.8.466"
6 CATEGORY="multimedia"
7 SHORT_DESC="cross-platform 3D audio API."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.bz2"
10 WEB_SITE="http://www.openal.org/"
11 WGET_URL="http://connect.creativelabs.com/openal/Downloads/$TARBALL"
12 BUILD_DEPENDS="cmake"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/CMakeConf
18 cmake -DCMAKE_INSTALL_PREFIX=/usr ..
19 make &&
20 make DESTDIR=$src/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }