wok view evilvte/receipt @ rev 14245

posixovl: fix symlink size
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 23 19:33:01 2013 +0100 (2013-03-23)
parents c9b183976335
children 223b265f40fd
line source
1 # SliTaz package receipt.
3 PACKAGE="evilvte"
4 VERSION="0.5.2~pre1"
5 CATEGORY="utilities"
6 SHORT_DESC="VTE based, highly customizable terminal emulator"
7 MAINTAINER="devl547@gmail.com"
8 WEB_SITE="http://www.calno.com/evilvte/"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="$WEB_SITE$TARBALL"
12 DEPENDS="gtk+ ncurses vte"
13 BUILD_DEPENDS="gtk+-dev ncurses-dev vte-dev"
14 TAGS="terminal"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr &&
20 make -j1 &&
21 make DESTDIR=$install install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }