wok view mhwaveedit/receipt @ rev 11827

dolibarr: Imporove recepit. Update database schema
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Feb 27 00:37:33 2012 +0100 (2012-02-27)
parents 7fb09aed8649
children dad10fa06251
line source
1 # SliTaz package receipt.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.20"
5 CATEGORY="multimedia"
6 SHORT_DESC="Lightweight sound files editor, recorder and player."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib libxml2 expat gtk+ xorg-libX11 xorg-libXau \
9 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
10 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender \
11 xorg-libXdamage"
12 BUILD_DEPENDS="alsa-lib-dev libxml2-dev gtk+-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="https://gna.org/projects/mhwaveedit/"
15 WGET_URL="http://download.gna.org/mhwaveedit/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 chmod +x install-sh
22 ./configure \
23 --prefix=/usr \
24 --without-sdl \
25 --without-libsamplerate \
26 --without-portaudio \
27 --without-libsndfile \
28 --without-esound \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $_pkg/usr/bin $fs/usr
39 }