mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2026-05-15 18:18:07 +02:00
* New upstream version.
[ Josh Triplett ]
* No longer installs files to /usr/include/X11, so remove Pre-Depends on
x11-common.
* Update to Standards-Version 3.7.2 (no changes required).
* Point specifically to http://xcb.freedesktop.org/dist in copyright file,
rather than http://xcb.freedesktop.org .
* Add debian/watch file.
* Install pkgconfig files to /usr/share/pkgconfig.
* Version Build-Depends on xcb-proto as (>= 0.9.92)
* Change libxcb0{,-dev,-dbg} to libxcb1{,-dev,-dbg} to match soname bump, and
update Depends of other library -dev packages.
* Add debian/control stanzas and debhelper install files for new library
libxcb-xlib0.
* Change libxcb${ext}0{,-dev,-dbg} to libxcb-${ext}0{,-dev,-dbg}, to match
the sonames of the libraries.
* cdbs >= 0.4.40 now builds -dbg packages for each library package, without
requiring DEB_DBG_PACKAGE_libxcb* for each one. Remove assignments to
these variables in debian/rules, and version cdbs Build-Depends accordingly.
* Change -dbg package priorities from optional to extra.
Authors: Josh Triplett <josh@freedesktop.org>, Jamey Sharp <jamey@minilop.net>
17 lines
435 B
Makefile
Executable file
17 lines
435 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
DEB_DH_INSTALL_SOURCEDIR=debian/tmp
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/autotools.mk
|
|
|
|
DEB_MAKE_CHECK_TARGET=check
|
|
DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) $(MAKE) -C $(DEB_BUILDDIR) CFLAGS="$(CFLAGS)"
|
|
|
|
debian/copyright: debian/copyright.debian COPYING
|
|
cat $+ > $@
|
|
|
|
clean::
|
|
-rm -f debian/copyright
|
|
|
|
common-install-prehook-arch common-install-prehook-indep:: debian/copyright
|