wok-next diff poedit/receipt @ rev 20523

libnsgif: add missing stuff
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 23 15:16:45 2018 +0200 (2018-03-23)
parents 7042a09beaeb
children 757d032c55c7
line diff
     1.1 --- a/poedit/receipt	Fri Jun 03 01:02:47 2016 +0300
     1.2 +++ b/poedit/receipt	Fri Mar 23 15:16:45 2018 +0200
     1.3 @@ -1,4 +1,4 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="poedit"
     1.8  VERSION="1.8.6"
     1.9 @@ -10,11 +10,10 @@
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WGET_URL="https://github.com/vslavik/$PACKAGE/archive/v$VERSION-oss.tar.gz"
    1.12  
    1.13 -DEPENDS="wxWidgets lucene++ gtkspell gcc49-lib-base gettext-tools"
    1.14  BUILD_DEPENDS="automake gettext asciidoc libxslt xmlto util-linux-getopt \
    1.15  docbook-xsl gcc49 wxWidgets-dev icu-dev gtkspell-dev \
    1.16  lucene++-dev db-dev libdb libdb-cxx expat-dev"
    1.17 -SUGGESTED="aspell"
    1.18 +SPLIT="poedit poedit-i18n"
    1.19  
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22 @@ -33,6 +32,18 @@
    1.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.24  genpkg_rules()
    1.25  {
    1.26 -	cp -a $install/* $fs
    1.27 -	rm -r $fs/usr/share/locale $fs/usr/share/man
    1.28 +	case $PACKAGE in
    1.29 +	poedit)
    1.30 +		SUGGESTED="aspell"
    1.31 +		DEPENDS="wxWidgets lucene++ gtkspell gcc49-lib-base gettext-tools"
    1.32 +		cp -a $install/* $fs
    1.33 +		rm -r $fs/usr/share/locale $fs/usr/share/man
    1.34 +		;;
    1.35 +	poedit-18n)
    1.36 +		CAT="localization|Translations for Poedit"
    1.37 +		DEPENDS="poedit"
    1.38 +		mkdir -p $fs/usr/share
    1.39 +		cp -a $install/usr/share/locale $fs/usr/share
    1.40 +		;;
    1.41 +	esac
    1.42  }