mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 17:39:23 +02:00
make deb can sign the deb packages from Mazen
git-svn-id: trunk@22577 -
This commit is contained in:
parent
84e874d914
commit
c814ca90c9
6
Makefile
6
Makefile
@ -3576,6 +3576,10 @@ DEBSRC=lazarus-${DEBVERSION}
|
||||
DEBSRCDIR=$(BUILDDIR)/${DEBSRC}
|
||||
DEBSRC_ORIG=lazarus_${DEBVERSION}.orig
|
||||
BUILDDATE=$(shell /bin/date --utc +%Y%m%d)
|
||||
DEB_BUILDPKG_OPT=-sa
|
||||
ifndef SIGN
|
||||
DEB_BUILDPKG_OPT+= -us -uc
|
||||
endif
|
||||
debcheck:
|
||||
ifneq ($(DEBVERSION),$(PACKAGE_VERSION))
|
||||
@$(ECHO) "Debian version ($(DEBVERSION)) is not correct, expect $(PACKAGE_VERSION)"
|
||||
@ -3614,7 +3618,7 @@ endif
|
||||
chmod 755 $(DEBSRCDIR)/debian/rules
|
||||
find $(DEBSRCDIR) -name '.svn' | xargs -n1 rm -rf
|
||||
debbuild:
|
||||
cd ${DEBSRCDIR} ; dpkg-buildpackage -us -uc
|
||||
cd ${DEBSRCDIR} ; dpkg-buildpackage ${DEB_BUILDPKG_OPT}
|
||||
debcheckpolicy:
|
||||
ifdef LINTIAN
|
||||
cd ${DEBSRCDIR} ; lintian -i ../*.changes
|
||||
|
@ -179,6 +179,10 @@ DEBSRC=lazarus-${DEBVERSION}
|
||||
DEBSRCDIR=$(BUILDDIR)/${DEBSRC}
|
||||
DEBSRC_ORIG=lazarus_${DEBVERSION}.orig
|
||||
BUILDDATE=$(shell /bin/date --utc +%Y%m%d)
|
||||
DEB_BUILDPKG_OPT=-sa
|
||||
ifndef SIGN
|
||||
DEB_BUILDPKG_OPT+= -us -uc
|
||||
endif
|
||||
|
||||
debcheck:
|
||||
ifneq ($(DEBVERSION),$(PACKAGE_VERSION))
|
||||
@ -222,7 +226,7 @@ endif
|
||||
find $(DEBSRCDIR) -name '.svn' | xargs -n1 rm -rf
|
||||
|
||||
debbuild:
|
||||
cd ${DEBSRCDIR} ; dpkg-buildpackage -us -uc
|
||||
cd ${DEBSRCDIR} ; dpkg-buildpackage ${DEB_BUILDPKG_OPT}
|
||||
|
||||
debcheckpolicy:
|
||||
ifdef LINTIAN
|
||||
|
Loading…
Reference in New Issue
Block a user