initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

25
libglade/glade.install Normal file
View File

@@ -0,0 +1,25 @@
post_install() {
if [ ! -d etc/xml ]; then
mkdir -p etc/xml
fi
if [ ! -e etc/xml/catalog ]; then
xmlcatalog --noout --create etc/xml/catalog
fi
xmlcatalog --noout --add "system" \
"http://glade.gnome.org/glade-2.0.dtd" \
/usr/share/xml/libglade/glade-2.0.dtd etc/xml/catalog
}
pre_upgrade() {
post_remove
}
post_upgrade() {
post_install $1
}
# arg 1: the old package version
post_remove() {
xmlcatalog --noout --del \
/usr/share/xml/libglade/glade-2.0.dtd etc/xml/catalog
}