wok view mhwaveedit/receipt @ rev 13741

mutt: fix build
author Paul Issott <paul@slitaz.org>
date Wed Dec 26 20:36:58 2012 +0000 (2012-12-26)
parents 92fad3dbcae4
children 5056100bfda3
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="https://gna.org/projects/mhwaveedit/"
10 WGET_URL="http://download.gna.org/mhwaveedit/$TARBALL"
12 DEPENDS="alsa-lib libxml2 expat gtk+ xorg-libX11 xorg-libXau \
13 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
14 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender \
15 xorg-libXdamage"
16 BUILD_DEPENDS="alsa-lib-dev libxml2-dev xorg-dev gtk+-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 chmod +x install-sh
23 ./configure \
24 --prefix=/usr \
25 --without-sdl \
26 --without-libsamplerate \
27 --without-portaudio \
28 --without-libsndfile \
29 --without-esound \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr $fs/etc
39 cp -a $install/usr/bin $fs/usr
40 cp -a $stuff/skel $fs/etc
41 chown -R 0.0 $fs
42 }