void-packages/srcpkgs/file/template
2016-06-15 07:51:41 +02:00

43 lines
1 KiB
Bash

# Template file for 'file'
pkgname=file
version=5.28
revision=1
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>"
homepage="http://www.darwinsys.com/file/"
license="2-clause-BSD"
distfiles="ftp://ftp.astron.com/pub/file/file-${version}.tar.gz"
checksum=0ecb5e146b8655d1fa84159a847ee619fc102575205a0ff9c6cc60fc5ee2e012
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
}
}