130664b622
as opposed to earlier threats, BerkDB was not entirely dropped; i suppose the isync 0.7 -> 0.8 change had a reason, so i added an alternative UID storage scheme. note that BDB 4.0 is not sufficient, as the db->open function changed in an incompatible way ... i updated the debian packaging except for a changelog entry. note that i removed the upgrade blurb, as upstream now has a smooth upgrade path down to at least isync 0.4.
59 lines
1.3 KiB
Makefile
Executable File
59 lines
1.3 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PACKAGE=isync
|
|
|
|
CFLAGS = -Wall -g
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
CFLAGS += -O0
|
|
else
|
|
CFLAGS += -O2
|
|
endif
|
|
|
|
DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
build: build-stamp
|
|
build-stamp: patch-stamp
|
|
dh_testdir
|
|
./configure --disable-maintainer-mode --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=/usr/share/man
|
|
$(MAKE) CFLAGS="$(CFLAGS)"
|
|
touch build-stamp
|
|
|
|
clean: clean1 unpatch
|
|
clean1:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
-$(MAKE) distclean
|
|
dh_clean Makefile config.log config.status
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs usr/bin usr/share/man/man1
|
|
$(MAKE) DESTDIR=$(CURDIR)/debian/isync install
|
|
|
|
binary-indep: build install
|
|
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs ChangeLog
|
|
dh_installdocs AUTHORS NEWS README TODO
|
|
dh_installexamples src/mbsyncrc.sample src/compat/isyncrc.sample
|
|
dh_installman
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install clean1
|
|
|
|
include /usr/share/dpatch/dpatch.make
|