wok view terminal/receipt @ rev 7271

Added printable patch fix to busybox. Now ls command can display the utf-8 filename. Thanks to a bug report in mailing list for the patch.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 15 04:56:01 2010 +0000 (2010-11-15)
parents 71185dbe9adf
children ffa7363d2338
line source
1 # SliTaz package receipt.
3 PACKAGE="terminal"
4 VERSION="0.2.12"
5 CATEGORY="x-window"
6 SHORT_DESC="Terminal emunaltor for Xfce Desktop Environment"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libexo vte startup-notification dbus"
9 BUILD_DEPENDS="libexo-dev vte-dev dbus-dev startup-notification-dev"
10 SOURCE="Terminal"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xfce.org/"
13 WGET_URL="$WEB_SITE/archive/xfce/4.6.1/src/$TARBALL"
14 TAGS="terminal"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/locale
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
33 cp -a $_pkg/usr/share/applications $fs/usr/share
34 }