123456789101112131415161718 |
- # Description: Utility for determining the type of a given file or files.
- # URL: ftp://ftp.fu-berlin.de/unix/tools/file/
- # Maintainer: Christos Zoulas
- # Packager: tnut at nutyx dot org
- name=file
- version=5.25
- release=1
- source=(ftp://ftp.astron.com/pub/file/file-$version.tar.gz)
- build() {
- cd $name-$version
- ./configure --prefix=/usr
- make
- make check
- make DESTDIR=$PKG install
- }
|