Skip to content

Instantly share code, notes, and snippets.

@fcoury
Forked from thattommyhall/gist:2205969
Created March 26, 2012 17:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcoury/2206678 to your computer and use it in GitHub Desktop.
Save fcoury/2206678 to your computer and use it in GitHub Desktop.
fpm ruby 1.9.3
apt-get install libreadline-dev
./configure --prefix=/usr && make && make install DESTDIR=/tmp/ruby193
fpm -s dir -t deb -n ruby -v 1.9.3-p125 -C /tmp/ruby193 \
-p ruby-VERSION_ARCH.deb -d "libstdc++6 (>= 4.4.3)" \
-d "libc6 (>= 2.6)" -d "libffi5 (>= 3.0.4)" -d "libgdbm3 (>= 1.8.3)" \
-d "libncurses5 (>= 5.7)" -d "libreadline6 (>= 6.1)" \
-d "libssl0.9.8 (>= 0.9.8)" -d "zlib1g (>= 1:1.2.2)" \
usr/bin usr/lib usr/share/man usr/include
ruby -ropenssl -rzlib -rreadline -e "puts :success"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment