wok annotate 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
rev   line source
al@16309 1 # SliTaz package receipt.
al@16309 2
al@16309 3 PACKAGE="libguess"
al@16309 4 VERSION="gpl"
al@16309 5 CATEGORY="development"
al@16309 6 SHORT_DESC="User input ambiguity resolver for user inputs written in C++"
al@16309 7 MAINTAINER="al.bobylev@gmail.com"
al@16309 8 LICENSE="GPL3"
al@16309 9 WEB_SITE="http://sourceforge.net/projects/libguess"
al@16309 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@16309 11 WGET_URL="git|git://git.code.sf.net/p/libguess/code"
al@16309 12
al@16309 13 DEPENDS="gcc-lib-base glibc-base"
al@16309 14 BUILD_DEPENDS="git"
al@16309 15
al@16309 16 # Rules to configure and make the package.
al@16309 17 compile_rules()
al@16309 18 {
al@16309 19 cd Release
al@16309 20 make
al@16309 21 }
al@16309 22
al@16309 23 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16309 24 genpkg_rules()
al@16309 25 {
al@16309 26 mkdir -p $fs/usr/lib
al@16309 27 cp -a $src/Release/libguess.so $fs/usr/lib
al@16309 28 mkdir -p $fs/usr/include/libguess
al@16309 29 install -m644 $src/src/Guess.h $fs/usr/include/libguess/libguess.h
al@16309 30 }