wok-next view mhwaveedit/receipt @ rev 10800
Add glib-networking (needed for https support in webkit based browser)
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Sat Jun 04 13:55:59 2011 +0200 (2011-06-04) | 
| parents | 21caf6b55e3a | 
| children | 7fb09aed8649 | 
 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 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 }