wok-next annotate ed/receipt @ rev 20678

Up clisp (2.50)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 15 02:59:03 2018 +0300 (2018-05-15)
parents 1170c748b1ab
children d5aab818505e
rev   line source
pascal@16335 1 # SliTaz package receipt.
pascal@16335 2
pascal@16335 3 PACKAGE="ed"
pascal@16335 4 VERSION="1.9"
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"
pascal@16335 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16335 10 WEB_SITE="http://www.gnu.org/software/ed/"
pascal@16335 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@16335 12
pascal@16335 13 DEPENDS=""
pascal@16335 14 BUILD_DEPENDS=""
pascal@16335 15
pascal@16335 16 # Rules to configure and make the package.
pascal@16335 17 compile_rules()
pascal@16335 18 {
pankso@16478 19 ./configure --prefix=/usr &&
pankso@16478 20 make CC=${HOST_SYSTEM}-gcc && make install
pascal@16335 21 }
pascal@16335 22
pascal@16335 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16335 24 genpkg_rules()
pascal@16335 25 {
pascal@16335 26 mkdir $fs/usr
pascal@16335 27 cp -a $install/usr/bin $fs/usr
pascal@16335 28 }