Create ncurses and vim packages

This commit is contained in:
Michał Siwek
2013-09-17 21:21:02 +02:00
parent 8ad1cc28d0
commit 2805522814
2 changed files with 24 additions and 0 deletions

11
packages/ncurses.rb Normal file
View File

@@ -0,0 +1,11 @@
require 'package'
class Ncurses < Package
version '5.9'
binary_url ({
i686: 'https://dl.dropboxusercontent.com/s/aule5impm7ek644/ncurses-5.9-chromeos-i686.tar.gz?token_hash=AAH6Z34Dd17OeG_to_cD7z_1bc95AObrDrfU2mHGhZ-3bg&dl=1'
})
binary_sha1 ({
i686: 'a46463be1b8f7cd3af8309e49fd6bc60cf0e5341'
})
end

13
packages/vim.rb Normal file
View File

@@ -0,0 +1,13 @@
require 'package'
class Vim < Package
version '7.3'
binary_url ({
i686: 'https://dl.dropboxusercontent.com/s/s6ya4cyeee7ywo9/vim-7.3-chromeos-i686.tar.gz?token_hash=AAEI_tXjoKfOGEWKN3fajxskcCxlOjxuANGIvu-nSABANQ&dl=1'
})
binary_sha1 ({
i686: '5ff6cf19c34582027092d342fc835b0f32c63be0'
})
depends_on 'ncurses'
end