diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template new file mode 100644 index 00000000000..ab8e3aef67f --- /dev/null +++ b/srcpkgs/deheader/template @@ -0,0 +1,24 @@ +# 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 " +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 +}