19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
# Description: File type identification utility
|
|
# URL: ftp://ftp.fu-berlin.de/unix/tools/file/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Packager: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: zlib
|
|
|
|
name=file
|
|
version=4.19
|
|
release=1
|
|
source=(ftp://ftp.fu-berlin.de/unix/tools/file/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --enable-fsect-man5
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rmdir $PKG/usr/man/man4
|
|
}
|