first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libglade/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libglade/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 2.6.4
First version

17
src/libglade/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="libglade"
DESC="libglade libraries useful for loading Glade interface files in a program at runtime"
VERSION="2.6.4"
FILES=("https://download.gnome.org/sources/libglade/${VERSION%.*}/libglade-$VERSION.tar.bz2")
HASHES=("d1776b40f4e166b5e9c107f1c8fe4139")
DEPENDS=("libxml2" "gtk2" "python3")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
sed -i '/DG_DISABLE_DEPRECATED/d' glade/Makefile.in
./configure --prefix=/usr --disable-static
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}