# Maintainer: orumin # Maintainer: Adam _basename=gst-plugins-ugly pkgname="lib32-$_basename" pkgver=1.14.4 pkgrel=2 pkgdesc="GStreamer Multimedia Framework Ugly Plugins (32-bit)" arch=('x86_64') license=('LGPL') url="https://gstreamer.freedesktop.org/" depends=('lib32-gst-plugins-base-libs' 'lib32-libdvdread' 'lib32-libmpeg2' 'lib32-a52dec' 'lib32-libsidplay' 'lib32-libcdio' 'lib32-x264' 'lib32-opencore-amr' 'gst-plugins-ugly') makedepends=('python' 'lib32-x264' 'autoconf-archive' 'git' 'valgrind-multilib') _commit=e1bf2aa184f83ff9fd5b7850c460129100ac6d1a # tags/1.14.4^0 #source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-ugly#commit=$_commit" # "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common") # I'm not sure if I'm just unlucky or whatever, the git server from freedesktop is too slow # So switch to github mirrors source=("git+https://github.com/freedesktop/gstreamer-gst-plugins-ugly.git#commit=$_commit" "gst-common::git+https://github.com/freedesktop/gstreamer-common.git") sha256sums=('SKIP' 'SKIP') pkgver() { cd $_basename git describe --tags | sed 's/-/+/g' } prepare() { cd $_basename git submodule init git config --local submodule.common.url "$srcdir/gst-common" git submodule update NOCONFIGURE=1 ./autogen.sh } build() { cd $_basename export CC='gcc -m32' export CXX='g++ -m32' export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libexecdir=/usr/lib32 \ --libdir=/usr/lib32 \ --build=i686-pc-linux-gnu \ --with-package-name="GStreamer Ugly Plugins (Arch Linux)" \ --with-package-origin="http://www.archlinux.org/" \ --with-x264-libraries="/usr/lib32/libx264.so" \ --enable-experimental \ --disable-gtk-doc \ --disable-static # https://bugzilla.gnome.org/show_bug.cgi?id=655517 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool make } #check() { # cd $_basename # make check #} package() { cd $_basename make DESTDIR="${pkgdir}" install rm -r "$pkgdir"/usr/share }