#!/bin/bash set -e rm_pkgconfig() { rm -f /usr/lib/pkgconfig/roctracer-proto.pc } case "$1" in remove) rm_pkgconfig ;; purge) ;; *) exit 0 ;; esac