wok view xwax/receipt @ rev 22340

Add perl-netaddr-ip & spamassassin
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 15 23:13:17 2019 +0100 (2019-11-15)
parents e97cb88f25e8
children 318701ea94ca
line source
1 # SliTaz package receipt.
3 PACKAGE="xwax"
4 VERSION="1.7"
5 CATEGORY="multimedia"
6 SHORT_DESC="An open-source Digital Vinyl System (DVS) for Linux."
7 MAINTAINER="Lucas Levrel <llev@slitaz.org>"
8 LICENSE="GPL2"
9 WEB_SITE="https://xwax.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}releases/$TARBALL"
14 DEPENDS="alsa-lib libsdl libsdl-ttf"
15 BUILD_DEPENDS="alsa-lib-dev libsdl-dev libsdl-ttf-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-alsa \
22 --prefix /usr \
23 $CONFIGURE_ARGS &&
24 LDFLAGS=-Os make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }