depends: Cleanup postprocess commands after switching to CMake

This commit is contained in:
Hennadii Stepanov 2024-07-23 11:39:21 +01:00 committed by fanquake
parent f7ab3ba404
commit 06d4aab77a
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1
3 changed files with 2 additions and 5 deletions

View file

@ -24,6 +24,3 @@ define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
endef
define $(package)_postprocess_cmds
rm -rf share/man
endef

View file

@ -39,7 +39,7 @@ define $(package)_stage_cmds
endef
define $(package)_postprocess_cmds
rm bin/event_rpcgen.py && \
rm -rf bin && \
rm include/ev*.h && \
rm include/event2/*_compat.h
endef

View file

@ -42,5 +42,5 @@ define $(package)_stage_cmds
endef
define $(package)_postprocess_cmds
rm -rf bin share lib/*.la
rm -rf share
endef