wok rev 22016

updated tea (33.5.0 -> 48.0.1)
author Hans-G?nter Theisgen
date Sat Oct 19 17:03:26 2019 +0100 (2019-10-19)
parents ce493bead59a
children c89ebe633ac5
files tea/receipt
line diff
     1.1 --- a/tea/receipt	Sat Oct 19 16:44:19 2019 +0100
     1.2 +++ b/tea/receipt	Sat Oct 19 17:03:26 2019 +0100
     1.3 @@ -1,31 +1,33 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tea"
     1.7 -VERSION="33.5.0"
     1.8 +VERSION="48.0.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Tead text editor using QT."
    1.11 +TAGS="text-editor"
    1.12 +SHORT_DESC="A QT-based text editor."
    1.13  MAINTAINER="pankso@slitaz.org"
    1.14  LICENSE="GPL3"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WEB_SITE="http://tea-editor.sourceforge.net/"
    1.17 -WGET_URL="http://semiletov.org/tea-releases/$TARBALL"
    1.18 -TAGS="text-editor"
    1.19 +WEB_SITE="http://semiletov.org/tea/"
    1.20  
    1.21 -DEPENDS="xorg-libX11 libQtCore libQtXml libQtGui"
    1.22 -BUILD_DEPENDS="Qt4-dev qmake xorg-dev"
    1.23 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.24 +WGET_URL="https://github.com/psemiletov/tea-qt/archive/$VERSION.tar.gz"
    1.25 +
    1.26 +DEPENDS="libQtCore libQtGui libQtXml xorg-libX11"
    1.27 +BUILD_DEPENDS="qmake Qt4-dev xorg-dev"
    1.28  
    1.29  # Rules to configure and make the package.
    1.30  compile_rules()
    1.31  {
    1.32 -	cd $src
    1.33 -	qmake PREFIX=/usr && make
    1.34 +	qmake PREFIX=/usr &&
    1.35 +	make
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
    1.42 -	cp -a $src/bin/tea $fs/usr/bin
    1.43 -	cp -a $src/icons/tea_icon_v2.png \
    1.44 -		$fs/usr/share/pixmaps/tea.png
    1.45 +	mkdir -p $fs/usr/bin
    1.46 +	mkdir -p $fs/usr/share/pixmaps
    1.47 +
    1.48 +	cp -a $src/bin/tea			$fs/usr/bin
    1.49 +	cp -a $src/icons/tea_icon_v2.png	$fs/usr/share/pixmaps/tea.png
    1.50  }