wok view sed/receipt @ rev 21981

updated subversion and subversion-dev (1.9.0 -> 1.12.2)
author Hans-G?nter Theisgen
date Sat Oct 12 10:07:49 2019 +0100 (2019-10-12)
parents 4b27a977323d
children c2bd5d258aac
line source
1 # SliTaz package receipt.
3 PACKAGE="sed"
4 VERSION="4.7"
5 CATEGORY="development"
6 SHORT_DESC="GNU stream editor."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/sed/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="acl"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cook_copy_folders bin
31 }
33 # Pre and post install commands for Tazpkg.
34 post_install()
35 {
36 [ "$(readlink $1/bin/sed)" = "busybox" ] && mv $1/bin/sed $1/bin/sed-bb
37 }
39 pre_remove()
40 {
41 [ -e $1/bin/sed-bb ] && mv $1/bin/sed-bb $1/bin/sed
42 }