21 lines
419 B
Text
21 lines
419 B
Text
![]() |
# Description: GNU stream editor
|
||
|
# URL:
|
||
|
# Maintainer:
|
||
|
# Depends on:
|
||
|
|
||
|
name=sed
|
||
|
version=4.7
|
||
|
release=1
|
||
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
sed -i 's/usr/tools/' build-aux/help2man
|
||
|
sed -i 's/testsuite.panic-tests.sh//' Makefile.in
|
||
|
|
||
|
./configure --prefix=/usr --bindir=/bin
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|