mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
15 lines
313 B
Plaintext
15 lines
313 B
Plaintext
# $NetBSD: DEINSTALL,v 1.1 2015/12/30 14:59:42 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
|