wok view evilvte/receipt @ rev 8795

Fix: evilvte needs -j1 to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Feb 22 23:49:55 2011 +0100 (2011-02-22)
parents fccb9d9484b9
children c9b183976335
line source
1 # SliTaz package receipt.
3 PACKAGE="evilvte"
4 VERSION="0.4.7"
5 CATEGORY="utilities"
6 SHORT_DESC="VTE based, highly customizable terminal emulator"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.calno.com/evilvte/"
10 WGET_URL="http://www.calno.com/evilvte/$TARBALL"
11 DEPENDS="vte gtk+"
12 BUILD_DEPENDS="vte vte-dev gtk+-dev xorg-libXtst-dev"
13 TAGS="terminal"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr &&
20 make -j1 &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/applications $fs/usr/share
30 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
31 }