wok view mhwaveedit/receipt @ rev 1769

Add get-upx
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 26 11:51:02 2008 +0000 (2008-11-26)
parents 281dd3cfcb05
children cde7fa93f1d6
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"
9 BUILD_DEPENDS="alsa-lib-dev libxml2-dev gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="https://gna.org/projects/mhwaveedit/"
12 WGET_URL="http://download.gna.org/mhwaveedit/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 chmod +x install-sh
19 ./configure --prefix=/usr --without-sdl --without-libsamplerate \
20 --without-portaudio $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/pixmaps
29 cp -a $_pkg/usr/bin $fs/usr
30 cp $src/src/icon.xpm $fs/usr/share/pixmaps/mhwaveedit.xpm
31 }