]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pkgs/sed/sed.nm
avahi: Update to 0.6.30.
[people/ms/ipfire-3.x.git] / pkgs / sed / sed.nm
CommitLineData
166a6c21
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
a7c97434 25include $(PKGROOT)/Include
166a6c21
MT
26
27PKG_NAME = sed
46bb7a2b
SS
28PKG_VER = 4.2.1
29PKG_REL = 0
166a6c21
MT
30
31PKG_MAINTAINER =
b42a752b 32PKG_GROUPS = Base Applications/Text
166a6c21
MT
33PKG_URL = http://sed.sourceforge.net/
34PKG_LICENSE = GPLv2+
35PKG_SUMMARY = A GNU stream text editor.
36
7ae28d5c
SS
37PKG_BUILD_DEPS+= libselinux-devel
38
166a6c21
MT
39define PKG_DESCRIPTION
40 The sed (Stream EDitor) editor is a stream or batch (non-interactive) \
41 editor. Sed takes text as input, performs an operation or set of \
42 operations on the text and outputs the modified text. The operations \
43 that sed performs (substitutions, deletions, insertions, etc.) can be \
44 specified in a script file or from the command line.
45endef
46
47PKG_TARBALL = $(THISAPP).tar.gz
48
7ae28d5c
SS
49CONFIGURE_OPTIONS += \
50 --bindir=/bin \
51 --without-included-regex \
52 --mandir=/usr/share/man
019de835
MT
53
54define STAGE_TEST
55 cd $(DIR_APP) && make check
56endef