wok rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 4dae4b66f0a3
children 9ee8f780e1e1
files buildroot/receipt tix/receipt
line diff
     1.1 --- a/buildroot/receipt	Mon Nov 03 09:57:58 2014 +0200
     1.2 +++ b/buildroot/receipt	Tue Nov 04 08:58:28 2014 +0100
     1.3 @@ -11,7 +11,8 @@
     1.4  WGET_URL="${WEB_SITE}downloads/$TARBALL"
     1.5  SUGGESTED="subversion bazaar git elfkickers ccache bison flex gettext texinfo"
     1.6  
     1.7 -DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra tar"
     1.8 +DEPENDS="slitaz-toolchain ncurses-dev ncurses wget ncursesw-extra tar \
     1.9 +bash bzip2 perl python unzip rsync"
    1.10  
    1.11  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.12  genpkg_rules()
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/tix/receipt	Tue Nov 04 08:58:28 2014 +0100
     2.3 @@ -0,0 +1,30 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="tix"
     2.7 +SOURCE="Tix"
     2.8 +VERSION="8.4.3"
     2.9 +CATEGORY="development"
    2.10 +SHORT_DESC="Tk Interface eXtension."
    2.11 +MAINTAINER="pascal.bellard@slitaz.org"
    2.12 +LICENSE="BSD"
    2.13 +TARBALL="$SOURCE$VERSION-src.tar.gz"
    2.14 +WEB_SITE="http://tix.sourceforge.net/"
    2.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.16 +
    2.17 +DEPENDS="tcl xorg-libX11 xorg-libXau xorg-libXdmcp libxcb"
    2.18 +BUILD_DEPENDS="tcl-dev tk-dev xorg-dev"
    2.19 +
    2.20 +# Rules to configure and make the package.
    2.21 +#
    2.22 +compile_rules()
    2.23 +{
    2.24 +	./configure --prefix=/usr $CONFIGURE_ARGS &&
    2.25 +	make &&
    2.26 +	make DESTDIR=$DESTDIR install
    2.27 +}
    2.28 +
    2.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.30 +genpkg_rules()
    2.31 +{
    2.32 +	cp -a $install/usr $fs
    2.33 +}