2016-02-24 01:27:23 +01:00
|
|
|
# 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
|
2016-03-07 13:45:49 +01:00
|
|
|
}
|