blob: 3ae06fe8f5704c7c7027840806438fcd97a7b00d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: File type identification utility
# URL: http://www.darwinsys.com/file/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: zlib
name=file
version=5.04
release=1
source=(ftp://ftp.fu-berlin.de/unix/tools/file/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man --enable-fsect-man5
make
make DESTDIR=$PKG install
rmdir $PKG/usr/man/man4
}
|