syncevolution/debian/rules

25 lines
650 B
Plaintext
Raw Normal View History

2009-08-04 13:45:06 +02:00
#!/usr/bin/make -f
# -*- makefile -*-
UPSTREAMTAG=syncevolution-1-0-beta-3
2009-08-16 01:06:50 +02:00
SOURCEPKG=$(shell dpkg-parsechangelog | sed -n 's/^Source: \(.*\)/\1/p')
UPSTREAM=$(shell dpkg-parsechangelog | sed -n 's/^Version: \(.*\)-[^-]*/\1/p')
ORIG=${SOURCEPKG}_${UPSTREAM}.orig.tar.gz
2009-08-04 13:45:06 +02:00
%:
dh $@
2009-08-21 16:05:54 +02:00
override_dh_auto_install:
make install DESTDIR=$(CURDIR)/debian/tmp
override_dh_auto_configure:
sh autogen.sh
2009-08-21 03:52:18 +02:00
./configure --with-synthesis-src=none --prefix=/usr --sysconfdir=/etc \
2009-08-22 13:18:25 +02:00
--libexecdir=/usr/lib/syncevolution --enable-gui
2009-08-16 01:06:50 +02:00
2010-03-07 12:53:46 +01:00
override_dh_install:
dh_install -X"*.pl"
2009-08-16 01:06:50 +02:00
get-orig-source:
2009-08-21 03:52:18 +02:00
git archive --format=tar ${UPSTREAMTAG} | gzip -9 > ../${ORIG}