Files
main/multimedia/video/vlc/comar/package.py
T
Poyraz76 f4b9a4848d VLC :)
2015-08-20 18:39:07 +03:00

16 lines
368 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import glob
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
os.system("/usr/lib/vlc/vlc-cache-gen -f /usr/lib/vlc/plugins")
def preRemove():
for cache in glob.glob("/usr/lib/vlc/plugins/plugins-*-*.dat"):
try:
os.unlink(cache)
except OSError:
pass