wok annotate ed/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents
children 1170c748b1ab
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 {
pascal@16335 19 ./configure --prefix=/usr && make && make install
pascal@16335 20 }
pascal@16335 21
pascal@16335 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16335 23 genpkg_rules()
pascal@16335 24 {
pascal@16335 25 mkdir $fs/usr
pascal@16335 26 cp -a $install/usr/bin $fs/usr
pascal@16335 27 }