From: Michael Stapelberg Date: Fri, 16 Oct 2009 18:46:45 +0000 (+0200) Subject: Change Makefile to make releases containing our current directory structure X-Git-Tag: 2.0~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=94ee6e4fb7b489e32669a10365a3dfe744e4a1a1;p=i3%2Fi3status Change Makefile to make releases containing our current directory structure --- diff --git a/Makefile b/Makefile index 2b8f0cc..0fa51a9 100644 --- a/Makefile +++ b/Makefile @@ -59,6 +59,10 @@ install: release: [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION} mkdir i3status-${VERSION} - find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|1\|h\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION} \; + find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "Makefile" -or -name "LICENSE" \) -exec cp '{}' i3status-${VERSION} \; + mkdir i3status-${VERSION}/src + mkdir i3status-${VERSION}/man + find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \; + find man -maxdepth 1 -type f \( -regex ".*\.\(1\)" \) -exec cp '{}' i3status-${VERSION}/man \; tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION} rm -rf i3status-${VERSION}