# "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}", } } }