void-packages/srcpkgs/deheader/template
2010-12-21 10:53:52 +01:00

24 lines
894 B
Text

# Template file for 'deheader'
pkgname=deheader
version=0.4
distfiles="http://www.catb.org/~esr/deheader/$pkgname-$version.tar.gz"
build_style=custom-install
short_desc="C and C++ header analyzer"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=3630a0860320855e6f12adeb93995a156a936b7b39a6f52c13274b56a01aa3f6
long_desc="
deheader analyzes C and C++ files to determine which header inclusions can be
removed while still allowing them to compile. This may result in substantial
improvements in compilation time, especially on large C++ projects; it also
sometimes exposes dependencies and cohesions of which developers were unaware."
noarch=yes
Add_dependency full python
do_install()
{
install -d ${DESTDIR}/usr/bin
install -d ${DESTDIR}/usr/share/man/man1
install -D -m755 ${wrksrc}/deheader ${DESTDIR}/usr/bin
install -D -m644 ${wrksrc}/deheader.1 ${DESTDIR}/usr/share/man/man1
}