mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
15 lines
313 B
Plaintext
15 lines
313 B
Plaintext
# $NetBSD: DEINSTALL,v 1.1 2013/07/21 02:32:58 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
|