blob: 75254c079271fa3395c912721afbf108df8a1825 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/make -f
export CABAL=debian/cabal-wrapper
# Do use the changelog's version number, rather than making one up.
export RELEASE_BUILD=1
%:
dh $@
#
# Rules for providing a standalone build of annex.
#
build-standalone:
[ -e .git ]
git checkout debian/changelog
quilt pop -a || :
QUILT_SERIES=series.standalone-build quilt push -a
debian/create-standalone-changelog
dpkg-buildpackage -rfakeroot
quilt pop -a
|