wok view mhwaveedit/receipt @ rev 2623

Fix: php build depends.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Apr 15 12:05:37 2009 +0200 (2009-04-15)
parents cde7fa93f1d6
children 4c55f6005299
line source
1 # SliTaz package receipt.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.15"
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 xorg-libXdamage"
11 BUILD_DEPENDS="alsa-lib-dev libxml2-dev gtk+-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="https://gna.org/projects/mhwaveedit/"
14 WGET_URL="http://download.gna.org/mhwaveedit/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 chmod +x install-sh
21 ./configure --prefix=/usr --without-sdl --without-libsamplerate \
22 --without-portaudio $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/pixmaps
31 cp -a $_pkg/usr/bin $fs/usr
32 cp $src/src/icon.xpm $fs/usr/share/pixmaps/mhwaveedit.xpm
33 }