wok view ed/receipt @ rev 22675
ed: update $TARBALL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jan 17 16:08:05 2020 +0100 (2020-01-17) |
parents | d21a5ddba767 |
children | dbb0f0791cf9 |
line source
1 # SliTaz package receipt.
3 PACKAGE="ed"
4 VERSION="1.15"
5 CATEGORY="development"
6 SHORT_DESC="A line-oriented text editor."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
10 TARBALL="$PACKAGE-$VERSION.tar.lz"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS=""
16 BUILD_DEPENDS="lzip"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr &&
22 make CC=${HOST_SYSTEM}-gcc &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }