first commit
This commit is contained in:
3
src/gdk-pixbuf/.gitignore
vendored
Normal file
3
src/gdk-pixbuf/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/gdk-pixbuf/changes.md
Normal file
2
src/gdk-pixbuf/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.42.10
|
||||
First version
|
26
src/gdk-pixbuf/pkg.sh
Normal file
26
src/gdk-pixbuf/pkg.sh
Normal file
@ -0,0 +1,26 @@
|
||||
NAME="gdk-pixbuf"
|
||||
DESC="Toolkit for image loading and pixel buffer manipulation"
|
||||
VERSION="2.42.10"
|
||||
FILES=("https://download.gnome.org/sources/gdk-pixbuf/2.42/gdk-pixbuf-$VERSION.tar.xz")
|
||||
HASHES=("4a62f339cb1424693fba9bb7ffef8150")
|
||||
DEPENDS=("glib" "libjpeg-turbo" "libpng" "shared-mime-info")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup .. \
|
||||
--prefix=/usr \
|
||||
--buildtype=release \
|
||||
--wrap-mode=nofallback
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -rf $NAME-$VERSION
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
gdk-pixbuf-query-loaders --update-cache
|
||||
}
|
Reference in New Issue
Block a user