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/librsvg/.gitignore vendored Normal file
View File

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

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

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

19
src/librsvg/pkg.sh Normal file
View File

@@ -0,0 +1,19 @@
NAME="librsvg"
DESC="Library and tools used to manipulate, convert and view Scalable Vector Graphic (SVG) images"
VERSION="2.56.3"
FILES=("https://download.gnome.org/sources/librsvg/2.56/librsvg-$VERSION.tar.xz")
HASHES=("8055142a6c9d0d21d42e40bc08dff814")
DEPENDS=("cairo" "gdk-pixbuf" "pango" "gobject-introspection")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr \
--enable-vala \
--disable-static \
--docdir=/usr/share/doc/librsvg-$VERSION
make && make DESTDIR="$ROOTDIR" DOC_INSTALL_DIR='$(docdir)' install
cd .. && rm -r $NAME-$VERSION
}