#!/hint/bash # Parabola GNU/Linux-libre configuration with Arch GNU/Linux derivation # Archictectures ARCHES=('i686' 'x86_64') # Multilib Support MULTILIB=('x86_64') # Main Repositories from Arch GNU/Linux MAIN_REPOS=('core' 'extra' 'testing' 'community' 'community-testing') # Libre Repositories from Parabola GNU/Linux-libre LIBRE_MAIN_REPOS=('libre' 'libre-testing') # Multilib Repositories from Arch GNU/Linux MULTILIB_REPOS=('multilib' 'multilib-testing') # Libre Multilib Repositories from Parabola GNU/Linux-libre LIBRE_MULTILIB_REPOS=('libre-multilib' 'libre-multilib-testing') # Extra Repositories EXTRA_REPOS=('nonprism' 'nonprism-testing' 'kernels' 'kernels-testing' 'cross' 'java') # Community Repositories COMMUNITY_REPOS=('pcr' 'pcr-testing' 'pur' '~aurelien' '~brendan' '~coadde' '~drtan' '~emulatorman' '~jorginho' '~lukeshu' '~smv' '~xihh') # Platform Repositories PATFORM_REPOS=('nonsystemd' 'nonsystemd-testing') # Remote Repositories PKG_ANY_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${LIBRE_MAIN_REPOS[@]}" "${MAIN_REPOS[@]}" "${COMMUNITY_REPOS[@]}") PKG_MULTILIB_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${LIBRE_MAIN_REPOS[@]}" "${MAIN_REPOS[@]}" "${LIBRE_MULTILIB_REPOS[@]}" "${MULTILIB_REPOS[@]}" "${COMMUNITY_REPOS[@]}") # Directories where packages are shared between repos # *relative to FTP_BASE* PKG_POOL='abslibre_gnu+linux' # Directories where sources are stored SRC_POOL='abslibre_gnu+linux'