wok-current view mhwaveedit/receipt @ rev 3961

Up: mhwaveedit (1.4.16)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Aug 26 01:14:50 2009 +0200 (2009-08-26)
parents faf21c50d61f
children 3d1725bed3f0
line source
1 # SliTaz package receipt.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.16"
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 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $_pkg/usr/bin $fs/usr
37 }