void-packages/srcpkgs/file/template
2018-04-22 15:57:26 +02:00

44 lines
1 KiB
Bash

# Template file for 'file'
pkgname=file
version=5.33
revision=2
bootstrap=yes
build_style=gnu-configure
configure_args="--enable-static"
makedepends="zlib-devel"
short_desc="File type identification utility"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD-2-Clause"
homepage="http://www.darwinsys.com/file/"
distfiles="ftp://ftp.astron.com/pub/file/file-${version}.tar.gz"
checksum=1c52c8c3d271cd898d5511c36a68059cda94036111ab293f01f83c3525b737c6
if [ "$CROSS_BUILD" ]; then
# XXX cross compilation needs exactly the same version for the host
hostmakedepends="file"
fi
post_install() {
vlicense COPYING
}
libmagic_package() {
short_desc="File type identification library"
pkg_install() {
vmove "usr/lib/*.so.*"
vmove usr/share/misc
vmove usr/share/man/man4
}
}
file-devel_package() {
depends="${makedepends} libmagic>=${version}_${revision}"
short_desc="File type identification library - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
}
}