blob: aff2d4f36671ddfc940fa23812fe16a252c3c9eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
DEB_INSTALL_CHANGELOGS_ALL = HISTORY
MAKE_OPTIONS = DVBDIR=/usr VDRDIR=/usr/include/vdr LIBDIR=. \
LOCALEDIR=debian/tmp/usr/share/locale \
YAVDR_PATCHES=1
common-build-arch::
$(MAKE) all $(MAKE_OPTIONS)
cleanbuilddir::
$(MAKE) -o .dependencies clean $(MAKE_OPTIONS)
rm -f libvdr-*.so.*
common-binary-predeb-arch::
sh /usr/share/vdr-dev/dependencies.sh
|