34 lines
872 B
Bash
34 lines
872 B
Bash
# Template file for 'file'
|
|
pkgname=file
|
|
version=5.23
|
|
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>"
|
|
homepage="http://www.darwinsys.com/file/"
|
|
license="BSD"
|
|
distfiles="ftp://ftp.astron.com/pub/file/file-${version}.tar.gz"
|
|
checksum=2c8ab3ff143e2cdfb5ecee381752f80a79e0b4cfe9ca4cc6e1c3e5ec15e6157c
|
|
|
|
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="zlib-devel 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
|
|
}
|
|
}
|