wok annotate ed/receipt @ rev 22685

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