wok view e3/receipt @ rev 12140

clutter-gtk: Fixed again. It needs gtk-doc and a autoreconf -i inorder to not get 'clutter/clutter.h: No such file or directory' error.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Mar 13 22:22:35 2012 -0500 (2012-03-13)
parents 2225ac6086d8
children 9584196b887d
line source
1 # SliTaz package receipt.
3 PACKAGE="e3"
4 VERSION="2.8"
5 CATEGORY="utilities"
6 SHORT_DESC="e3 is a full featured text editor written in NASM
7 assembler."
8 MAINTAINER="devl547@gmail.com"
9 DEPENDS=""
10 BUILD_DEPENDS="make nasm"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WEB_SITE="http://sites.google.com/site/e3editor"
13 WGET_URL="$WEB_SITE/Home/$TARBALL"
14 TAGS="text-editor"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i -e 's/-D$(EXMODE)//' Makefile &&
21 sed -i -e 's#/man/man#/share/man/man#' Makefile
22 make &&
23 make PREFIX=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 cp -R $WOK/$PACKAGE/install/* $fs/usr/
31 }