wok-next view poedit/receipt @ rev 21371

updated micropython again (1.0.1 -> 1.12)
author Hans-G?nter Theisgen
date Thu Apr 16 10:04:47 2020 +0100 (2020-04-16)
parents d5aab818505e
children c2763f7c58b6
line source
1 # SliTaz package receipt v2.
3 PACKAGE="poedit"
4 VERSION="1.8.6"
5 CATEGORY="localization"
6 SHORT_DESC="A cross-platform gettext catalogs editing tool"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://poedit.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/vslavik/$PACKAGE/archive/v$VERSION-oss.tar.gz"
14 BUILD_DEPENDS="automake gettext-dev asciidoc libxslt xmlto util-linux-getopt \
15 docbook-xsl gcc49 wxWidgets-dev icu-dev gtkspell-dev \
16 lucene++-dev db-dev libdb libdb-cxx expat-dev"
17 SPLIT="$PACKAGE-i18n $PACKAGE"
19 compile_rules() {
20 export CXX=/usr/bin/i486-slitaz-linux-g++-49 # FIXME: what about x86_64?
21 #export CXXFLAGS="$CFLAGS -std=gnu++11"
22 ./bootstrap &&
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$install install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 poedit-18n)
31 copy locale/
32 CAT="localization|translations"
33 DEPENDS="poedit"
34 ;;
35 poedit)
36 copy @std @rm
37 DEPENDS="wxWidgets lucene++ gtkspell gcc49-lib-base gettext"
38 SUGGESTED="aspell"
39 ;;
40 esac
41 }