cdrtools: stop installing useless man pages

The installed man{3,4} pages are for silly NIH build tools (!), and
conflict with useful packages like `man-pages`. Drop 'em.
This commit is contained in:
Tobias Geerinckx-Rice 2016-03-16 06:59:05 +01:00
parent 1c9d5306fb
commit be7253d846

View file

@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
buildInputs = [ acl libcap ];
postPatch = ''
sed "/\.mk3/d" -i libschily/Targets.man
substituteInPlace man/Makefile --replace "man4" ""
'';
configurePhase = "true";
GMAKE_NOWARN = true;