wok-next annotate libee/receipt @ rev 20846

mingw32-gcc: fix CFLAGS, CXXFLAGS as it is not recent GCC and it don't understand something
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 13:59:48 2018 +0300 (2018-06-23)
parents 0ec6086e21d6
children d5aab818505e
rev   line source
al@20463 1 # SliTaz package receipt v2.
erjo@11414 2
erjo@11414 3 PACKAGE="libee"
erjo@11414 4 VERSION="0.3.2"
erjo@11414 5 CATEGORY="system-tools"
erjo@11414 6 SHORT_DESC="An Event Expression Library inspired by CEE"
erjo@11414 7 MAINTAINER="erjo@slitaz.org"
pascal@15472 8 LICENSE="LGPL2.1"
erjo@11414 9 WEB_SITE="http://www.libee.org/download/"
al@20463 10
erjo@11414 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11414 12 WGET_URL="http://www.libee.org/files/download/$TARBALL"
erjo@11414 13
pascal@15117 14 BUILD_DEPENDS="libestr-dev automake"
al@20463 15 SPLIT="libee-dev"
erjo@11414 16
al@20463 17 compile_rules() {
al@20463 18 ./configure \
al@20463 19 --disable-testbench \
al@20463 20 $CONFIGURE_ARGS &&
al@20575 21 fix libtool &&
al@20575 22 make -j1 &&
al@20557 23 make install
erjo@11414 24 }
erjo@11414 25
al@20463 26 genpkg_rules() {
al@20463 27 case $PACKAGE in
al@20463 28 libee)
al@20557 29 copy @std
al@20463 30 DEPENDS="libestr"
al@20463 31 ;;
al@20463 32 *-dev)
al@20557 33 copy @dev
al@20463 34 ;;
al@20463 35 esac
erjo@11414 36 }