# HG changeset patch # User Pascal Bellard # Date 1415087908 -3600 # Node ID 0f7d97c681bd823d813d5a21a57d574c2fbc2ef5 # Parent 4dae4b66f0a3abac333f1d7e4fa1ea35b9ac2d89 Add tix diff -r 4dae4b66f0a3 -r 0f7d97c681bd buildroot/receipt --- a/buildroot/receipt Mon Nov 03 09:57:58 2014 +0200 +++ b/buildroot/receipt Tue Nov 04 08:58:28 2014 +0100 @@ -11,7 +11,8 @@ WGET_URL="${WEB_SITE}downloads/$TARBALL" SUGGESTED="subversion bazaar git elfkickers ccache bison flex gettext texinfo" -DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra tar" +DEPENDS="slitaz-toolchain ncurses-dev ncurses wget ncursesw-extra tar \ +bash bzip2 perl python unzip rsync" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r 4dae4b66f0a3 -r 0f7d97c681bd tix/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tix/receipt Tue Nov 04 08:58:28 2014 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="tix" +SOURCE="Tix" +VERSION="8.4.3" +CATEGORY="development" +SHORT_DESC="Tk Interface eXtension." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$SOURCE$VERSION-src.tar.gz" +WEB_SITE="http://tix.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="tcl xorg-libX11 xorg-libXau xorg-libXdmcp libxcb" +BUILD_DEPENDS="tcl-dev tk-dev xorg-dev" + +# Rules to configure and make the package. +# +compile_rules() +{ + ./configure --prefix=/usr $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +}