wok view mhwaveedit/receipt @ rev 22563

updated bozohttpd (20111118 -> 20190228)
author Hans-G?nter Theisgen
date Sun Jan 05 14:11:46 2020 +0100 (2020-01-05)
parents eeba7ab1dffe
children ee53899c6189
line source
1 # SliTaz package receipt.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.24"
5 CATEGORY="multimedia"
6 SHORT_DESC="Lightweight sound files editor, recorder and player."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/magnush/mhwaveedit/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/v$VERSION/$TARBALL"
14 DEPENDS="alsa-lib libxml2 expat gtk+ xorg-libX11 xorg-libXau \
15 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
16 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender \
17 xorg-libXdamage"
18 BUILD_DEPENDS="alsa-lib-dev libxml2-dev xorg-libX11-dev gtk+-dev"
20 HOST_ARCH="i486 arm"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 chmod +x install-sh
26 ./configure \
27 --prefix=/usr \
28 --without-sdl \
29 --without-libsamplerate \
30 --without-portaudio \
31 --without-libsndfile \
32 --without-esound \
33 $CONFIGURE_ARGS &&
34 make -j 1 &&
35 make DESTDIR=$DESTDIR install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr
42 mkdir -p $fs/etc
44 cp -a $install/usr/bin $fs/usr
45 cp -a $stuff/skel $fs/etc
46 chown -R 0.0 $fs
47 }