summaryrefslogtreecommitdiff
path: root/manifests/arch_ports.pp
blob: 2720ebe7211df68143730b9c57b12e4d07fedc49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# "ports" tree for arch linux, providing all PKGBUILD sources for the
# public repos.
# https://archlinux.org/svn/
class profiles::arch_ports (
  String $location = '/usr/local/arch',
) {

  [ 'packages', 'community' ].each |$repo| {
    vcsrepo { "${location}/${repo}":
      ensure   => present,
      provider => 'git',
      source   => "https://github.com/archlinux/svntogit-${repo}",
    }
  }
}