23 lines
450 B
Plaintext
23 lines
450 B
Plaintext
|
# Tanım: Takes text input, do some operation on it, and outputs the modified text.
|
|||
|
# URL: http://www.gnu.org/software/sed//sed.html
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
|
|||
|
isim=sed
|
|||
|
surum=4.2.2
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://ftp.gnu.org/gnu/sed/sed-$surum.tar.bz2)
|
|||
|
|
|||
|
derle()
|
|||
|
{
|
|||
|
cd sed-$surum
|
|||
|
./configure --prefix=/usr --bindir=/bin \
|
|||
|
--libdir=/lib --htmldir=/usr/share/doc/sed-$surum
|
|||
|
make
|
|||
|
make html
|
|||
|
make check
|
|||
|
make DESTDIR=$PKG install
|
|||
|
rm -r $PKG/usr/share/info
|
|||
|
}
|