fix: gst-plugins-bad archive hash

This commit is contained in:
ngn 2024-08-25 16:29:42 +03:00
parent 06dfcd4f65
commit 3b56b76987
2 changed files with 20 additions and 7 deletions

View File

@ -3,7 +3,7 @@ DESC="Set of GStreamer plug-ins that aren't up to par compared to the rest"
VERSION="1.22.10"
FILES=("https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${VERSION}.tar.xz")
HASHES=("d18cde538d5c954e94f888143e703a52")
HASHES=("8e81739d264c32a10be011b235b454ce")
DEPENDS=(
"gst-plugins-base" "bzip2" "cairo"

View File

@ -1,21 +1,34 @@
NAME="gtk2"
DESC="Libraries used for creating graphical user interfaces for applications"
VERSION="2.24.33"
FILES=("https://download.gnome.org/sources/gtk+/2.24/gtk+-$VERSION.tar.xz")
FILES=("https://download.gnome.org/sources/gtk+/2.24/gtk+-${VERSION}.tar.xz")
HASHES=("0118e98dbe0e4dab90ce475f9f0e6c0c")
DEPENDS=("at-spi2-core" "gdk-pixbuf" "pango")
DEPENDS=(
"at-spi2-core" "gdk-pixbuf" "pango"
"cairo" "desktop-file-utils" "fontconfig"
"gdk-pixbuf" "glib" "librsvg"
"libx11" "libxcomposite" "libxcursor"
"libxdamage" "libxext" "libxfixes"
"libxi" "libxinerama" "libxrandr"
"libxrender" "pango" "shared-mime-info"
"adwaita-icon-theme"
)
DEPENDS=("gobject-introspection" "gtk-doc")
PACKAGE() {
tar xf gtk+-$VERSION.tar.xz
cd gtk+-$VERSION
tar xf "gtk+-${VERSION}.tar.xz"
cd "gtk+-${VERSION}"
sed -e 's#l \(gtk-.*\).sgml#& -o \1#' \
-i docs/{faq,tutorial}/Makefile.in
./configure --prefix=/usr --sysconfdir=/etc
make && make DESTDIR="$ROOTDIR" install
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r gtk+-$VERSION
cd .. && rm -r "gtk+-${VERSION}"
}
INSTALL(){