mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
1ceef7d5b9
Apply correct patch from fd.o #722760 to fix several issues: update the license terms to LGPLv2.1+, fix dependencies to built-in libvpx and fix make dist.
25 lines
703 B
Makefile
25 lines
703 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
SUBDIRS = debian.upstream ext gst-libs gst pkgconfig tests docs
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = \
|
|
aclocal.m4 compile config.guess config.sub \
|
|
configure depcomp install-sh ltmain.sh \
|
|
Makefile.in missing config.h.in gtk-doc.make
|
|
|
|
DEB_BUILDDIR = debian.build
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot -uc -us
|
|
|
|
deb.upstream: dist-bzip2
|
|
-mkdir -p $(DEB_BUILDDIR)
|
|
cd $(DEB_BUILDDIR) && \
|
|
rm -rf $(PACKAGE)-$(VERSION) && \
|
|
tar jxvf ../$(PACKAGE)-$(VERSION).tar.bz2 && \
|
|
cd $(PACKAGE)-$(VERSION) && \
|
|
$(LN_S) debian.upstream debian && \
|
|
$(MAKE) deb -f Makefile.am
|