wok view libguess/receipt @ rev 20117

Up lz4 (1.8.0), zstd - Long Range (1.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 13 13:42:46 2017 +0200 (2017-10-13)
parents
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="libguess"
4 VERSION="gpl"
5 CATEGORY="development"
6 SHORT_DESC="User input ambiguity resolver for user inputs written in C++"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://sourceforge.net/projects/libguess"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="git|git://git.code.sf.net/p/libguess/code"
13 DEPENDS="gcc-lib-base glibc-base"
14 BUILD_DEPENDS="git"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd Release
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $src/Release/libguess.so $fs/usr/lib
28 mkdir -p $fs/usr/include/libguess
29 install -m644 $src/src/Guess.h $fs/usr/include/libguess/libguess.h
30 }