2006-02-23 15:26:10 +00:00
|
|
|
# Description: File type identification utility
|
2008-05-01 19:10:08 +02:00
|
|
|
# URL: http://www.darwinsys.com/file/
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Depends on: zlib
|
|
|
|
|
|
|
|
name=file
|
2014-02-13 09:23:34 -06:00
|
|
|
version=5.17
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
2007-01-13 14:37:01 +01:00
|
|
|
source=(ftp://ftp.fu-berlin.de/unix/tools/file/$name-$version.tar.gz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2013-01-05 09:29:04 +01:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--enable-fsect-man5 \
|
|
|
|
--enable-static
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rmdir $PKG/usr/man/man4
|
|
|
|
}
|