wok-6.x annotate sed/receipt @ rev 18249
Up slitaz-boot-files (408), slitaz-base-files (282)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 02 15:15:17 2015 +0200 (2015-08-02) |
parents | 4c9e6fbf8207 |
children | 9e57f34f89f5 |
rev | line source |
---|---|
paul@3640 | 1 # SliTaz package receipt. |
paul@3640 | 2 |
paul@3640 | 3 PACKAGE="sed" |
devl547@17655 | 4 VERSION="4.2.2" |
paul@3640 | 5 CATEGORY="development" |
paul@3640 | 6 SHORT_DESC="Gnu stream editor." |
paul@3640 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15229 | 8 LICENSE="GPL3" |
paul@3640 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@3640 | 10 WEB_SITE="http://www.gnu.org/software/sed/" |
paul@3640 | 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pankso@16465 | 12 HOST_ARCH="i486 arm" |
paul@3640 | 13 |
pascal@15229 | 14 DEPENDS="acl" |
pascal@15229 | 15 |
paul@3640 | 16 # Rules to configure and make the package. |
paul@3640 | 17 compile_rules() |
paul@3640 | 18 { |
paul@3640 | 19 ./configure \ |
paul@3640 | 20 $CONFIGURE_ARGS && |
pankso@16465 | 21 make $MAKEFLAGS && make install |
paul@3640 | 22 } |
paul@3640 | 23 |
paul@3640 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3640 | 25 genpkg_rules() |
paul@3640 | 26 { |
paul@3640 | 27 mkdir -p $fs/usr |
pascal@15229 | 28 cp -a $install/usr/bin $fs/usr |
paul@3640 | 29 } |
paul@3640 | 30 |