Many changes has been incorporated into Meteor version 1.3.2.4. Instead of wrapping packages in Atmosphere the packages now are installed straight from NPM. Migration from AtmosphereJs to NPM caused problems deploying projects to Bluemix environment, since during build process it creates many files but bluemix staging environemnt has limits in place on how many files can be uploaded. As such made Cloud Foundary Community provided buildpack became obsolete.
One of the possible ways to overcome this limitation is to build project locally upload tarball to bluemix and setup the rest remotely, and this buildpack does exactly that.
Based on Community buildback
Simply build your app locally
meteor build /some/path/deploy
And push it to bluemix
cd /some/path/deploy
cf push app_name -b https://github.com/tadasdanielius/cf-meteor-pb-buildback.git