wok view dashel/receipt @ rev 23837

Up freetype (2.10.2), git (2.26.2), glpi (9.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 10:44:24 2020 +0000 (2020-06-01)
parents 6e8b1bcb30e2
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="dashel"
4 VERSION="1.3.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="C++ cross-platform data stream helper encapsulation library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://aseba-community.github.io/dashel/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/aseba-community/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS="hal"
15 BUILD_DEPENDS="cmake hal-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cmake . \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 -DBUILD_SHARED_LIBS=OFF &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
32 cp -a $install/usr/include $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 }