mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-29 19:48:53 +02:00
* Basically we just don't run autoreconf anymore. * Also remove lib/charset.alias from the package.
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
SUMMARY="A stream editor"
|
|
DESCRIPTION="
|
|
Sed is a stream editor, i.e. it can be used to perform basic text
|
|
transformations on an input stream (a file or input from a pipeline).
|
|
|
|
While in some ways similar to an editor which permits scripted edits
|
|
(such as ed), sed works by making only one pass over the input(s), and
|
|
is consequently more efficient. But it is sed's ability to filter text
|
|
in a pipeline which particularly distinguishes it from other types of
|
|
editors.
|
|
"
|
|
HOMEPAGE="http://www.gnu.org/software/sed"
|
|
SRC_URI="http://ftp.gnu.org/gnu/sed/sed-4.2.1.tar.gz"
|
|
CHECKSUM_MD5="f0fd4d7da574d4707e442285fd2d3b86"
|
|
REVISION="4"
|
|
ARCHITECTURES="x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
sed = $portVersion compat >= 4
|
|
cmd:sed = $portVersion compat >= 4
|
|
"
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:sed
|
|
"
|
|
|
|
SOURCE_DIR="$portVersionedName"
|
|
|
|
BUILD()
|
|
{
|
|
./configure $configureDirArgs \
|
|
--enable-regex-tests --without-included-regex \
|
|
--disable-rpath --with-gnu-ld
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
rm $libDir/charset.alias
|
|
rmdir $libDir
|
|
}
|
|
|
|
LICENSE="GNU GPL v3"
|
|
COPYRIGHT="1989-2009 Free Software Foundation, Inc."
|