2017-10-27 21:56:50 +02:00
|
|
|
|
# Tanım: Utility for determining the type of a given file or files.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: ftp://ftp.fu-berlin.de/unix/tools/file/
|
2017-10-27 21:56:50 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler:
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:15:02 +02:00
|
|
|
|
isim=file
|
|
|
|
|
surum=5.25
|
|
|
|
|
devir=1
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:15:02 +02:00
|
|
|
|
kaynak=(ftp://ftp.astron.com/pub/file/file-$surum.tar.gz)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:15:02 +02:00
|
|
|
|
cd $isim-$surum
|
2017-10-27 21:56:50 +02:00
|
|
|
|
./configure --prefix=/usr
|
|
|
|
|
make
|
|
|
|
|
make check
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
}
|