wok-next view mhwaveedit/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mhwaveedit"
4 VERSION="1.4.23"
5 CATEGORY="multimedia"
6 SHORT_DESC="Lightweight sound files editor, recorder and player"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/magnush/mhwaveedit/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.gna.org/mhwaveedit/$TARBALL" # FIXME
14 BUILD_DEPENDS="alsa-lib-dev libxml2-dev libx11-dev gtk2-dev"
16 compile_rules() {
17 chmod +x install-sh
18 ./configure \
19 --prefix=/usr \
20 --without-sdl \
21 --without-libsamplerate \
22 --without-portaudio \
23 --without-libsndfile \
24 --without-esound \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$install install
28 }
30 genpkg_rules() {
31 mkdir -p $fs/usr $fs/etc
32 cp -a $install/usr/bin $fs/usr
33 cp -a $stuff/skel $fs/etc
34 chown -R 0.0 $fs
35 DEPENDS="alsa-lib libxml2 expat gtk2 libx11 libxau \
36 libxcomposite libxcursor libxdmcp libxext \
37 libxfixes libxinerama libxrandr libxrender \
38 libxdamage"
39 }