12345678910111213141516171819 |
- # Tanım: Utility for determining the type of a given file or files.
- # URL: ftp://ftp.fu-berlin.de/unix/tools/file/
- # Paketçi: milisarge
- # Gerekler:
- isim=file
- surum=5.25
- devir=1
- kaynak=(ftp://ftp.astron.com/pub/file/file-$surum.tar.gz)
- derle() {
- cd $isim-$surum
- ./configure --prefix=/usr
- make
- make check
- make DESTDIR=$PKG install
- }
|