wok view mhwaveedit/receipt @ rev 4050

Add: util-linux-ng-uuid (provide *uuid* utility and libs)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:36:26 2009 +0200 (2009-09-09)
parents 4c55f6005299
children a48c016d40fb
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 --without-libsndfile \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share
37 cp -a $_pkg/usr/bin $fs/usr
38 }