wok-next diff e3/receipt @ rev 9411
Add fpc-bootstrap, fpc, and fpc-src. This is freepascal compile. fpc-bootstrap is freepascal compiler to compile itself. fpc-src is need for lazarus ide.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Mar 29 03:50:39 2011 +0000 (2011-03-29) |
parents | |
children | 45e7aae37df2 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/e3/receipt Tue Mar 29 03:50:39 2011 +0000 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="e3" 1.7 +VERSION="2.8" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="e3 is a full featured text editor written in NASM 1.10 +assembler." 1.11 +MAINTAINER="devl547@gmail.com" 1.12 +DEPENDS="" 1.13 +BUILD_DEPENDS="make nasm" 1.14 +TARBALL="$PACKAGE-$VERSION.tgz" 1.15 +WEB_SITE="http://sites.google.com/site/e3editor/" 1.16 +WGET_URL="$WEB_SITE/Home/e3-2.8.tgz" 1.17 +TAGS="text-editor" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + sed -i -e 's/-D$(EXMODE)//' Makefile && 1.24 + sed -i -e 's#/man/man#/share/man/man#' Makefile 1.25 + make && 1.26 + make PREFIX=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr/ 1.33 + cp -R $WOK/$PACKAGE/install/* $fs/usr/ 1.34 +}