diff --git a/packages/x11/other/vte/build b/packages/x11/other/vte/build new file mode 100755 index 0000000000..18565e9e12 --- /dev/null +++ b/packages/x11/other/vte/build @@ -0,0 +1,26 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/build toolchain +$SCRIPTS/build libX11 +$SCRIPTS/build glib +$SCRIPTS/build pango +$SCRIPTS/build gtk+ + +cd $PKG_BUILD +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-static \ + --disable-shared \ + --disable-deprecation \ + --disable-python \ + --disable-gnome-pty-helper \ + --disable-glade \ + --with-default-emulation=xterm \ + +make + +$MAKEINSTALL \ No newline at end of file diff --git a/packages/x11/other/vte/install b/packages/x11/other/vte/install new file mode 100755 index 0000000000..9580a1940a --- /dev/null +++ b/packages/x11/other/vte/install @@ -0,0 +1,10 @@ +#!/bin/sh + +. config/options + +#mkdir -p $INSTALL/usr/libexec +#cp $PKG_BUILD/gnome-pty-helper/gnome-pty-helper $INSTALL/usr/libexec + +mkdir -p $INSTALL/usr/share/vte/termcap +cp $PKG_BUILD/termcaps/xterm $INSTALL/usr/share/vte/termcap + diff --git a/packages/x11/other/vte/url b/packages/x11/other/vte/url new file mode 100644 index 0000000000..f3f2963f3a --- /dev/null +++ b/packages/x11/other/vte/url @@ -0,0 +1 @@ +http://ftp.gnome.org/pub/GNOME/sources/vte/0.20/vte-0.20.5.tar.gz \ No newline at end of file