wok-next annotate sed/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
rev   line source
al@19745 1 # SliTaz package receipt v2.
paul@3640 2
paul@3640 3 PACKAGE="sed"
al@21085 4 VERSION="4.7"
paul@3640 5 CATEGORY="development"
al@19741 6 SHORT_DESC="GNU stream editor"
paul@3640 7 MAINTAINER="paul@slitaz.org"
pascal@15229 8 LICENSE="GPL3"
al@19568 9 WEB_SITE="https://www.gnu.org/software/sed/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/sed.html"
paul@3640 11
al@19741 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19568 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@21085 14 TARBALL_SHA1="dbc842f6fdf538f366d97e7c4b4f241eaefd14a5"
al@19568 15
al@21020 16 BUILD_DEPENDS="acl-dev gettext-dev texinfo"
al@21085 17 DEPENDS="acl"
al@21085 18
al@21085 19 TAGS="LFS"
pascal@15229 20
al@20436 21 compile_rules() {
al@21085 22 # # Rebuild after patching
al@21085 23 # msgfmt po/ru.po -o po/ru.gmo
al@19568 24
paul@3640 25 ./configure \
al@19568 26 --bindir=/bin \
paul@3640 27 $CONFIGURE_ARGS &&
al@21085 28 make &&
al@20861 29 make html &&
al@20861 30 make install || return 1
al@20436 31
al@20436 32 cook_pick_docs doc/sed.html
paul@3640 33 }