wok view evilvte/receipt @ rev 16626

Remove copyq.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 09 22:31:34 2014 +0300 (2014-05-09)
parents f76b5b1ad11c
children 5d53e8ccbc8d
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 LICENSE="GPL2"
9 WEB_SITE="http://www.calno.com/evilvte/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="$WEB_SITE$TARBALL"
13 DEPENDS="gtk+ ncurses vte"
14 BUILD_DEPENDS="gtk+-dev ncurses-dev vte-dev"
15 TAGS="terminal"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr &&
21 make -j1 &&
22 make DESTDIR=$install install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }