wok-current diff zile/receipt @ rev 23823
created recipes for qt5 packages
author | Hans-G?nter Theisgen |
---|---|
date | Thu May 28 10:56:20 2020 +0100 (2020-05-28) |
parents | 8abb017ed841 |
children | 922f061231c2 |
line diff
1.1 --- a/zile/receipt Wed Mar 12 00:54:36 2014 +0100 1.2 +++ b/zile/receipt Thu May 28 10:56:20 2020 +0100 1.3 @@ -1,31 +1,35 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="zile" 1.7 -VERSION="2.3.24" 1.8 +VERSION="2.4.14" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="GNU Zile is a lightweight Emacs clone." 1.11 +TAGS="text-editor" 1.12 +SHORT_DESC="A lightweight Emacs clone." 1.13 MAINTAINER="domcox@slitaz.org" 1.14 LICENSE="GPL3" 1.15 +WEB_SITE="https://www.gnu.org/software/zile/" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://www.gnu.org/software/zile/" 1.19 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.20 -TAGS="text-editor" 1.21 + 1.22 +DEPENDS="gc glibc-base ncursesw" 1.23 +BUILD_DEPENDS="gc-dev help2man ncursesw-dev" 1.24 + 1.25 HOST_ARCH="i486 arm" 1.26 1.27 -DEPENDS="ncursesw" 1.28 -BUILD_DEPENDS="ncursesw-dev" 1.29 - 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 + export LDFLAGS="$LDFLAGS -lrt" 1.34 + 1.35 ./configure $CONFIGURE_ARGS && 1.36 - make && make install 1.37 + make && 1.38 + make install 1.39 } 1.40 1.41 # Rules to gen a SliTaz package suitable for Tazpkg. 1.42 genpkg_rules() 1.43 { 1.44 mkdir -p $fs/usr 1.45 - cp -a $install/usr/bin $fs/usr 1.46 + cp -a $install/usr/bin $fs/usr 1.47 } 1.48 -