99680f5c7d
From release announce: We are pleased to announce the release of Ruby 2.2.1. This is the first TEENY version release of the stable 2.2 series. This release includes the fix for ffi build failure and memory leak issue on Symbol GC (See Bug #10686). See ChangeLog for details.
14 lines
313 B
Text
14 lines
313 B
Text
# $NetBSD: DEINSTALL,v 1.1 2015/03/08 16:24:55 taca Exp $
|
|
|
|
RUBY_GEM_BASE="${PREFIX}/@RUBY_GEM_BASE@"
|
|
RUBY_SITERIDIR="${PREFIX}/@RUBY_SITERIDIR@"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
${RM} -f ${RUBY_SITERIDIR}/created.rid
|
|
;;
|
|
POST-DEINSTALL)
|
|
${RM} -rf ${GEM_HOME}
|
|
${RMDIR} ${RUBY_GEM_BASE} 2>/dev/null || true
|
|
;;
|
|
esac
|