diff --git a/lib/rbpkg/repos/autoconf.rb b/lib/rbpkg/repos/autoconf.rb
new file mode 100644
index 0000000..05196f1
--- /dev/null
+++ b/lib/rbpkg/repos/autoconf.rb
@@ -0,0 +1,20 @@
+class Rbpkg::Repos::Autoconf < Rbpkg::Repo
+
+ def self.repo_name
+ "autoconf"
+ end
+
+ def self.dependencies
+ []
+ end
+
+ def dir
+ "gnu.org/autoconf"
+ end
+
+ def git_url
+ "http://git.sv.gnu.org/r/autoconf.git"
+ end
+
+ repo_register
+end