blob: 0ded5b2ff02ffa89c6e00a438a63afd7f660deb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: drakkan <nicola.murino at gmail dot com>
pkgname=mingw-w64-gst-plugins-ugly
pkgver=1.12.4
pkgrel=1
pkgdesc="GStreamer Multimedia Framework Ugly Plugins (mingw-w64)"
arch=(any)
url="http://gstreamer.freedesktop.org/"
license=('LGPL')
depends=('mingw-w64-gst-plugins-base')
makedepends=('mingw-w64-configure' 'mingw-w64-x264' 'mingw-w64-lame' 'mingw-w64-opencore-amr' 'mingw-w64-mpg123')
options=('!strip' '!buildflags' 'staticlibs')
source=(${url}/src/gst-plugins-ugly/gst-plugins-ugly-${pkgver}.tar.xz)
sha256sums=('1c165b8d888ed350acd8e6ac9f6fe06508e6fcc0a3afc6ccc9fbeb30df9be522')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
build() {
cd "${srcdir}/gst-plugins-ugly-${pkgver}"
for _arch in $_architectures; do
mkdir -p "build-${_arch}"
cd "build-${_arch}"
${_arch}-configure \
--with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
--with-package-origin="http://www.archlinux.org/" \
--disable-examples \
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
cd ..
done
}
package() {
cd "${srcdir}/gst-plugins-ugly-${pkgver}"
for _arch in ${_architectures}; do
cd "build-${_arch}"
make DESTDIR="${pkgdir}" install
rm "$pkgdir"/usr/$_arch/lib/gstreamer-1.0/*.a
rm "$pkgdir"/usr/$_arch/lib/gstreamer-1.0/*.la
rm -rf "$pkgdir"/usr/${_arch}/share/${aclocal,man,locale}
find "$pkgdir" -name '*.dll' -exec ${_arch}-strip --strip-unneeded {} \;
find "$pkgdir" -name '*.dll' -o -name '*.a' -exec ${_arch}-strip -g {} \;
cd ..
done
}
# vim: ts=2 sw=2 et:
|