bentley 75afce4d85 Import progit-1084.
Pro Git (Second Edition) is your fully-updated guide to Git and its usage in
the modern world. Git has come a long way since it was first developed by
Linus Torvalds for Linux kernel development. It has taken the open source
world by storm since its inception in 2005, and this book teaches you how to
use it like a pro.

Effective and well-implemented version control is a necessity for successful
web projects, whether large or small. With this book you'll learn how to
master the world of distributed version workflow, use the distributed
features of Git to the full, and extend Git to meet your every need.

ok benoit@ krw@
2016-08-05 05:20:50 +00:00

35 lines
791 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2016/08/05 05:20:50 bentley Exp $
COMMENT = book on version control with Git
V = 1084
PKGNAME = progit-$V
CATEGORIES = books
HOMEPAGE = https://progit.org/
MAINTAINER = Anthony J. Bentley <anthony@anjbe.name>
# CC-BY-NC-SA 3.0
PERMIT_PACKAGE_CDROM = non-commercial
PERMIT_PACKAGE_FTP = Yes
MASTER_SITES = https://progit2.s3.amazonaws.com/en/2016-03-22-f3531/
DISTFILES = progit-en.$V.pdf \
progit-en.$V.zip
EXTRACT_ONLY = progit-en.$V.zip
NO_BUILD = Yes
NO_TEST = Yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/progit/html
${INSTALL_DATA} ${DISTDIR}/progit-en.$V.pdf \
${PREFIX}/share/doc/progit/progit.pdf
cp -R ${WRKDIST}/*.html ${WRKDIST}/book/ ${WRKDIST}/theme/ \
${PREFIX}/share/doc/progit/html
.include <bsd.port.mk>