git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-pasky spec file
@ 2005-04-22  1:55 Chris Wright
  2005-04-22  2:40 ` Petr Baudis
  2005-04-22 14:16 ` [PATCH] git-pasky spec file Kevin Smith
  0 siblings, 2 replies; 8+ messages in thread
From: Chris Wright @ 2005-04-22  1:55 UTC (permalink / raw)
  To: Petr Baudis; +Cc: git

Here's a simple spec file to do rpm builds.  It's against the
latest Makefile (which has the s/BINDIR/bindir/ change).  I've used
DESTDIR, although it's not clear it's meant to stay in the Makefile.
For now, there's no dynamic (git.spec.in, for example) update to the
Version, so it's set against 0.6.3 (expecting it to be forthcoming
shortly).  It installs to /usr/local/bin, and expects the tarball to be
named git-pasky-0.6.3.tar.bz2.  Creates a package named git, which seems
fine since Linus' isn't likely to be packaged directly.  Enjoy.

Signed-off-by: Chris Wright <chrisw@osdl.org>

--- /dev/null	1969-12-31 16:00:00.000000000 -0800
+++ git-pasky-0.6.3/git.spec	2005-04-21 18:42:18.000000000 -0700
@@ -0,0 +1,43 @@
+Name: 		git
+Version: 	0.6.3
+Release: 	1
+Vendor: 	Petr Baudis <pasky@ucw.cz>
+Summary:  	Git core and tools
+License: 	GPL
+Group: 		Development/Tools
+URL: 		http://pasky.or.cz/~pasky/dev/git/
+Source: 	http://pasky.or.cz/~pasky/dev/git/%{name}-pasky-%{version}.tar.bz2
+Provides: 	git = %{version}
+BuildRequires:	zlib-devel openssl-devel
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+Prereq: 	sh-utils diffutils
+
+%description
+GIT comes in two layers. The bottom layer is merely an extremely fast
+and flexible filesystem-based database designed to store directory trees
+with regard to their history. The top layer is a SCM-like tool which
+enables human beings to work with the database in a manner to a degree
+similar to other SCM tools (like CVS, BitKeeper or Monotone).
+
+%prep
+%setup -q -n %{name}-pasky-%{version}
+
+%build
+
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make DESTDIR=$RPM_BUILD_ROOT/usr/local/ bindir=bin/ install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+/usr/local/bin/*
+#%{_mandir}/*/*
+
+%changelog
+* Thu Apr 21 2005 Chris Wright <chrisw@osdl.org> 0.6.3-1
+- Initial rpm build

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-04-25 22:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-22  1:55 [PATCH] git-pasky spec file Chris Wright
2005-04-22  2:40 ` Petr Baudis
2005-04-22  2:48   ` Chris Wright
2005-04-25 21:24     ` Paul Dickson
2005-04-25 22:21       ` Chris Wright
2005-04-22  3:13   ` [PATCH] Eliminate use of mktemp's "-t" option David A. Wheeler
2005-04-22 14:16 ` [PATCH] git-pasky spec file Kevin Smith
2005-04-22 15:21   ` Chris Wright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).