wok view flmusic/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
parents
children 544e47246b33
line source
1 # SliTaz package receipt
3 PACKAGE="flmusic"
4 VERSION="1.2.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="FLTK Audio player"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-fltk13-source-$VERSION.tgz"
10 WEB_SITE="http://home.arcor.de/szukw000/english_index.html"
11 WGET_URL="http://home.arcor.de/szukw000/$TARBALL"
13 DEPENDS="fltk alsa-lib sox"
14 BUILD_DEPENDS="fltk-dev alsa-lib-dev sox-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 #sed -i '/ioctl.h/a #include <limits.h>' reader.c &&
20 sed -i 's/$(installdir)/$(DESTDIR)$(installdir)/' \
21 Makefile.in || return 1
22 chmod +x configure &&
23 ./configure --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make && mkdir -p $DESTDIR/usr/bin &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }