add .spec file and Makefile rule for building an rpm

This commit is contained in:
Adam Spiers
2006-05-15 02:59:52 +01:00
parent 8064ee26bd
commit 8642a73caa
2 changed files with 64 additions and 0 deletions

View File

@ -14,6 +14,9 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
VERSION=4.0.13
TARGZ=offlineimap_$(VERSION).tar.gz
SHELL=/bin/bash
clean:
@ -40,3 +43,13 @@ doc:
groff -Tascii -man offlineimap.1 | sed $$'s/.\b//g' > manual.txt
-rm manpage.links manpage.refs
targz: ../$(TARGZ)
../$(TARGZ):
if ! pwd | grep -q "/offlineimap-$(VERSION)$$"; then \
echo "Containing directory must be called offlineimap-$(VERSION)"; \
exit 1; \
fi; \
pwd && cd .. && pwd && tar -zhcv --exclude '_darcs' -f $(TARGZ) offlineimap-$(VERSION)
rpm: targz
cd .. && sudo rpmbuild -ta $(TARGZ)