wok-next view rlog/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents e323d0535e2c
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rlog"
4 VERSION="1.4"
5 CATEGORY="misc"
6 SHORT_DESC="C++ logging library"
7 MAINTAINER="b1+slitaz@nagel.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.arg0.net/rlog"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://rlog.googlecode.com/files/$TARBALL"
14 SPLIT="rlog-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 fix libtool &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 rlog)
26 copy @std
27 DEPENDS="gcc-lib-base"
28 TAGS="C++ log"
29 ;;
30 *-dev)
31 copy @dev
32 ;;
33 esac
34 }