wok-current view terminal/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
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 }