Created
October 12, 2011 13:22
-
-
Save loleg/1281213 to your computer and use it in GitHub Desktop.
Arch Linux patch for build-couchdb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib.rb:122: | |
when :archlinux | |
installed = `pacman -Q`.split("\n") | |
if !installed.member?(package) | |
sh "sudo pacman -S #{package}" | |
end | |
distros.rb:74: | |
# Arch Linux | |
if `uname -r`.include? "ARCH" | |
return [:archlinux, `uname -r`.chomp] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment