Commit ceba3092 authored by Damian Montero's avatar Damian Montero

MongoDB Package added

parent 4da66ff6
#!/bin/bash
DIRNAME=${PWD##*/}
echo creating file list
find . -type f > ../filelist && find . -type l >> ../filelist && cut -c2- ../filelist > filelist
......@@ -10,8 +11,8 @@ echo removing temporary files
rm dlistcut ../dlist ../filelist
echo building binary package
tar -czf ../package.tar.gz *
sha1sum ../package.tar.gz > ../package.tar.gz.sha1
tar -czf ../$DIRNAME.tar.gz *
sha1sum ../$DIRNAME.tar.gz > ../$DIRNAME.tar.gz.sha1
echo finished
cat ../package.tar.gz.sha1
cat ../$DIRNAME.tar.gz.sha1
require 'package'
class Mongodb < Package
version '3.0.8'
binary_url ({
i686: "https://www.dropbox.com/s/n32v3h34jswxhg7/mongodb-linux-i686-3.0.8.tar.gz?dl=0",
x86_64: "https://www.dropbox.com/s/two0chqyim5eo4a/mongodb-linux-x86_64-3.0.8.tar.gz?dl=0"
})
binary_sha1 ({
i686: "71fd4324ce91352416eea83149432b953928306e",
x86_64: "fdbf8ad9207dc5fd31af0113e9c00e02521e9101"
})
end
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment