blob: d88d006279af3e83776008383651b39d0efe4f18 (
plain)
1 # Description: File type identification utility
2 # URL: https://www.darwinsys.com/file/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: zlib
5
6 name=file
7 version=5.43
8 release=1
9 source=(http://www.astron.com/pub/file/$name-$version.tar.gz)
10
11 build() {
12 cd file-$version
13 autoreconf -vfi
14 ./configure \
15 --prefix=/usr \
16 --enable-fsect-man5 \
17 --enable-static \
18 --disable-libseccomp
19 make
20 make DESTDIR=$PKG install
21 rmdir $PKG/usr/share/man/man4
22 }
|