2017-10-27 22:56:50 +03:00
|
|
|
|
# Tanım: Takes text input, do some operation on it, and outputs the modified text.
|
2016-02-24 02:27:23 +02:00
|
|
|
|
# URL: http://www.gnu.org/software/sed//sed.html
|
2017-10-27 22:56:50 +03:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler:
|
|
|
|
|
|
2017-10-28 15:15:02 +03:00
|
|
|
|
isim=sed
|
|
|
|
|
surum=4.2.2
|
|
|
|
|
devir=1
|
2016-02-24 02:27:23 +02:00
|
|
|
|
|
2017-10-28 15:15:02 +03:00
|
|
|
|
kaynak=(http://ftp.gnu.org/gnu/sed/sed-$surum.tar.bz2)
|
2016-02-24 02:27:23 +02:00
|
|
|
|
|
2017-10-28 00:59:41 +03:00
|
|
|
|
derle()
|
2016-02-24 02:27:23 +02:00
|
|
|
|
{
|
2017-10-28 15:15:02 +03:00
|
|
|
|
cd sed-$surum
|
2016-02-24 02:27:23 +02:00
|
|
|
|
./configure --prefix=/usr --bindir=/bin \
|
2017-10-28 15:15:02 +03:00
|
|
|
|
--libdir=/lib --htmldir=/usr/share/doc/sed-$surum
|
2016-02-24 02:27:23 +02:00
|
|
|
|
make
|
|
|
|
|
make html
|
|
|
|
|
make check
|
|
|
|
|
make DESTDIR=$PKG install
|
2016-03-07 14:45:49 +02:00
|
|
|
|
rm -r $PKG/usr/share/info
|
2016-02-24 02:27:23 +02:00
|
|
|
|
}
|