wok view ed/receipt @ rev 16335

Add ed
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 11 11:44:33 2014 +0000 (2014-04-11)
parents
children 1170c748b1ab
line source
1 # SliTaz package receipt.
3 PACKAGE="ed"
4 VERSION="1.9"
5 CATEGORY="development"
6 SHORT_DESC="A line-oriented text editor."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/ed/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 }