wok view dashel/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 2c81261f7304
children 6e8b1bcb30e2
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://gna.org/projects/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 }