wok-4.x diff openal/receipt @ rev 4276
minicom: fix build with glibc-2.10
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 26 00:15:15 2009 +0200 (2009-09-26) |
parents | |
children | 6ec17b55b59a |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/openal/receipt Sat Sep 26 00:15:15 2009 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="openal" 1.7 +SOURCE="openal-soft" 1.8 +VERSION="1.8.466" 1.9 +CATEGORY="multimedia" 1.10 +SHORT_DESC="cross-platform 3D audio API." 1.11 +MAINTAINER="pascal.bellard@slitaz.org" 1.12 +TARBALL="$SOURCE-$VERSION.bz2" 1.13 +WEB_SITE="http://www.openal.org/" 1.14 +WGET_URL="http://connect.creativelabs.com/openal/Downloads/$TARBALL" 1.15 +BUILD_DEPENDS="cmake" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src/CMakeConf 1.21 + cmake -DCMAKE_INSTALL_PREFIX=/usr .. 1.22 + make && 1.23 + make DESTDIR=$src/_pkg install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/lib 1.30 + cp -a $_pkg/usr/bin $fs/usr 1.31 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.32 +} 1.33 +