blob: 826b7a4937754b600e12677872c3b7d03bc28947 (
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: bzip2 zstd
5
6 name=file
7 version=5.44
8 release=1
9 source=(http://www.astron.com/pub/file/$name-$version.tar.gz)
10
11 build() {
12 cd file-$version
13 ./configure \
14 --prefix=/usr \
15 --enable-fsect-man5 \
16 --enable-static \
17 --disable-libseccomp
18 make
19 make DESTDIR=$PKG install
20 rmdir $PKG/usr/share/man/man4
21 }
|