32 lines
911 B
Plaintext
Raw Normal View History

2016-02-28 14:29:19 +11:00
# Description: An essential exemplary set of plugins for gstreamer.
2017-02-15 22:31:47 +11:00
# URL: https://gstreamer.freedesktop.org/modules/gst-plugins-base.html
2016-02-28 14:29:19 +11:00
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 21:48:19 +10:00
# Depends on: alsa-lib-32 gst-plugins-base gstreamer-32 libjpeg-turbo-32 libtheora-32 libvisual-32 mesa3d-32 orc-32 pango-32
2019-04-20 21:45:50 +10:00
# Optional: cdparanoia-32
2016-02-28 14:29:19 +11:00
name=gst-plugins-base-32
2019-12-10 21:30:58 +11:00
version=1.16.2
2016-02-28 14:29:19 +11:00
release=1
2020-06-16 23:23:31 +10:00
source=(https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-$version.tar.xz
gst-plugins-base-1.16.2-make43.patch)
2016-02-28 14:29:19 +11:00
build() {
cd gst-plugins-base-$version
2020-06-16 23:23:31 +10:00
patch -p1 -i $SRC/gst-plugins-base-1.16.2-make43.patch
2016-02-28 14:29:19 +11:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--disable-debug \
--disable-nls \
--disable-dependency-tracking \
--disable-valgrind \
--disable-examples
make
make DESTDIR=$PKG install
2016-05-29 21:40:35 +10:00
rm -r $PKG/usr/{bin,include,share/man,share/gtk-doc,share}
2016-02-28 14:29:19 +11:00
}