wok view ed/receipt @ rev 18520

Up: tazpkg-test(851): new fr.po
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Oct 25 22:20:52 2015 +0200 (2015-10-25)
parents 84dacddcafd8
children d21a5ddba767
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"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr &&
21 make CC=${HOST_SYSTEM}-gcc && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }