wok-6.x diff libguess/receipt @ rev 17054
slim: no any changes after patch edit, use "sed slim.conf"
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Thu Aug 21 00:37:34 2014 +0200 (2014-08-21) |
parents | |
children | 86790a278e70 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libguess/receipt Thu Aug 21 00:37:34 2014 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libguess" 1.7 +VERSION="gpl" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="User input ambiguity resolver for user inputs written in C++" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="http://sourceforge.net/projects/libguess" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="git|git://git.code.sf.net/p/libguess/code" 1.15 + 1.16 +DEPENDS="gcc-lib-base glibc-base" 1.17 +BUILD_DEPENDS="git" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd Release 1.23 + make 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/lib 1.30 + cp -a $src/Release/libguess.so $fs/usr/lib 1.31 + mkdir -p $fs/usr/include/libguess 1.32 + install -m644 $src/src/Guess.h $fs/usr/include/libguess/libguess.h 1.33 +}