wok view mhwaveedit/receipt @ rev 5202

Up: mhwaveedit (1.4.18)
author Alexander Medvedev <devl547@gmail.com>
date Mon Mar 29 13:03:09 2010 +0000 (2010-03-29)
parents a48c016d40fb
children 45503bb2f76d
line source
1 # SliTaz package receipt.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.18"
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=$PWD/_pkg install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share
38 cp -a $_pkg/usr/bin $fs/usr
39 }