wok view qastools/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 e6b7a2aaf2e1
line source
1 # SliTaz package receipt.
3 PACKAGE="qastools"
4 VERSION="0.17.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="QasTools is a collection of desktop applications for the ALSA"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://xwmw.org/qastools/index.html"
10 TARBALL="${PACKAGE}_$VERSION.tar.xz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
12 GENERIC_MENUS="no"
14 DEPENDS="alsa-lib libQtCore libQtGui libQtNetwork libQtSvg qasmixer"
15 BUILD_DEPENDS="cmake Qt4-dev qmake alsa-lib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build; cd build
21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
22 make &&
23 make DESTDIR=$install install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 rm -rf $fs/usr/share/man $fs/usr/share/qastools/COPYING
32 # separate qasmixer
33 for file in $(cat $stuff/qasmixer.files); do
34 rm -f $fs$file
35 done
36 }