wok view dashel/receipt @ rev 22121

updated wavpack and wavpack-dev (4.60.1 -> 5.1.0)
author Hans-G?nter Theisgen
date Sun Nov 03 15:34:58 2019 +0100 (2019-11-03)
parents eb8067417980
children 13db6a8e5f8a
line source
1 # SliTaz package receipt.
3 PACKAGE="dashel"
4 VERSION="1.0.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="C++ cross-platform data stream helper encapsulation library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://aseba-community.github.io/dashel/"
11 WGET_URL="http://download.gna.org/dashel/$VERSION/$TARBALL"
13 DEPENDS="hal"
14 BUILD_DEPENDS="cmake hal-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/* $fs/usr
29 }