diff --git a/src/gst-plugins-bad/pkg.sh b/src/gst-plugins-bad/pkg.sh index 330028b..131d9d8 100644 --- a/src/gst-plugins-bad/pkg.sh +++ b/src/gst-plugins-bad/pkg.sh @@ -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" diff --git a/src/gtk2/pkg.sh b/src/gtk2/pkg.sh index 99efae7..4eed4a0 100644 --- a/src/gtk2/pkg.sh +++ b/src/gtk2/pkg.sh @@ -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(){