debianization
This commit is contained in:
parent
909f619c07
commit
117e97ea30
7 changed files with 49 additions and 0 deletions
5
INSTALL
Normal file
5
INSTALL
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
To build and use git-annex, you will need:
|
||||||
|
|
||||||
|
* ghc
|
||||||
|
* These haskell libraries: MissingH
|
||||||
|
* a "uuid" command
|
4
Makefile
4
Makefile
|
@ -2,6 +2,10 @@ git-annex:
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
ghc -odir build -hidir build --make git-annex
|
ghc -odir build -hidir build --make git-annex
|
||||||
|
|
||||||
|
install:
|
||||||
|
install -d $(DESTDIR)/usr/bin
|
||||||
|
install git-annex $(DESTDIR)/usr/bin
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build git-annex
|
rm -rf build git-annex
|
||||||
|
|
||||||
|
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
git-annex (0.01) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* First release
|
||||||
|
|
||||||
|
-- Joey Hess <joeyh@debian.org> Thu, 09 Sep 2010 08:24:58 -0400
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
7
|
26
debian/control
vendored
Normal file
26
debian/control
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
Source: git-annex
|
||||||
|
Section: utils
|
||||||
|
Priority: optional
|
||||||
|
Build-Depends: debhelper (>= 7.0.50), ghc6, libghc6-missingh-dev
|
||||||
|
Maintainer: Joey Hess <joeyh@debian.org>
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
Vcs-Git: git://git.kitenet.net/git-annex
|
||||||
|
Homepage: http://kitenet.net/~joey/code/git-annex/
|
||||||
|
|
||||||
|
Package: git-annex
|
||||||
|
Architecture: any
|
||||||
|
Section: utils
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}, git | git-core, uuid
|
||||||
|
Description: manage files with git, without checking their contents into git
|
||||||
|
git-annex allows managing files with git, without checking the file
|
||||||
|
contents into git. While that may seem paradoxical, it is useful when
|
||||||
|
dealing with files larger than git can currently easily handle, whether due
|
||||||
|
to limitations in memory, checksumming time, or disk space.
|
||||||
|
.
|
||||||
|
Even without file content tracking, being able to manage files with git,
|
||||||
|
move files around and delete files with versioned directory trees, and use
|
||||||
|
branches and distributed clones, are all very handy reasons to use git. And
|
||||||
|
annexed files can co-exist in the same git repository with regularly
|
||||||
|
versioned files, which is convenient for maintaining documents, Makefiles,
|
||||||
|
etc that are associated with annexed files but that benefit from full
|
||||||
|
revision control.
|
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
doc/*.mdwn
|
7
debian/rules
vendored
Executable file
7
debian/rules
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
# Not intended for use by anyone except the author.
|
||||||
|
announcedir:
|
||||||
|
@echo ${HOME}/src/joeywiki/code/git-annex/news
|
Loading…
Reference in a new issue