summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Makefile11
-rw-r--r--dist.ini20
-rw-r--r--lib/Git/Annex.pm4
4 files changed, 32 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d42646b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/Git-Annex-*
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..220b46d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.PHONY: CLEAN
+clean:
+ rm -rf Git-Annex-*
+
+.PHONY: dist
+dist:
+ dzil build
+
+.PHONY: test
+test:
+ prove --lib
diff --git a/dist.ini b/dist.ini
new file mode 100644
index 0000000..10056c9
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,20 @@
+name = Git-Annex
+author = Sean Whitton <spwhitton@spwhitton.name>
+license = GPL_3
+copyright_holder = Sean Whitton <spwhitton@spwhitton.name>
+copyright_year = 2019-2020
+
+version = 0.001
+
+[GatherDir]
+prune_directory = debian
+
+[@Filter]
+-bundle = @Basic
+-remove = License
+-remove = GatherDir
+
+[AutoPrereqs]
+
+[PkgVersion]
+[PodVersion]
diff --git a/lib/Git/Annex.pm b/lib/Git/Annex.pm
index fda3a5c..3819b09 100644
--- a/lib/Git/Annex.pm
+++ b/lib/Git/Annex.pm
@@ -20,10 +20,6 @@
Git::Annex - Perl interface to git-annex repositories
-=head1 VERSION
-
-version 0.01
-
=head1 SYNOPSIS
my $annex = Git::Annex->new("/home/spwhitton/annex");