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