wok view sed/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents a4165ad7b30b
children d5ac235eb44c
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 ln -s /usr/bin/sed $1/bin/sed
38 }
40 pre_remove()
41 {
42 rm $1/bin/sed
43 [ -e $1/bin/sed-bb ] && mv $1/bin/sed-bb $1/bin/sed
44 }