1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
DEB_DH_MAKESHLIBS_ARGS_libgfshare1 := -V"libgfshare1 (>= 1.0.2)"
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/rules/utils.mk
# Lose the .la file, complain if anything else is missing
binary-post-install/libgfshare-dev::
rm -f debian/tmp/usr/lib/*.la
common-binary-post-install-arch:: list-missing
DEB_DH_STRIP_ARGS := --dbg-package=libgfshare-dbg
# The -dbg and -dev packages have a versioned dependency on the
# library, so don't need their own doc directories - we symlink them
# using dh_link .links files
DEB_INSTALL_DOCS_libgfshare-dbg := --no-act
DEB_INSTALL_CHANGELOGS_libgfshare-dbg := --no-act
DEB_INSTALL_DOCS_libgfshare-dev := --no-act
DEB_INSTALL_CHANGELOGS_libgfshare-dev := --no-act
|