mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-17 22:11:19 +02:00
13 lines
155 B
Bash
13 lines
155 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PREFIX="${PKG_PREFIX-/usr/local}"
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
/bin/rm -rf ${PREFIX}/lib/xorg/modules/extensions/libglx.so*
|
|
;;
|
|
esac
|