Commit 0a8364d49099f14d46367dec2eecf804778defdf

Thomas de Grivel 2023-03-06T19:00:02

autoconf

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