1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export DEB_CXXFLAGS_MAINT_APPEND = -fPIC
export DEB_CPPFLAGS_MAINT_APPEND = -DNDEBUG -I/usr/include/android
export DEB_LDFLAGS_MAINT_APPEND = -fPIC
%:
dh $@
override_dh_auto_build:
dh_auto_build --buildsystem=makefile -- -f debian/etc1tool.mk
pandoc --standalone --from=markdown-smart --to=man --output=debian/etc1tool.1 debian/etc1tool.1.md
get-orig-source: $(subst android-platform-,,$(DEB_SOURCE)).tar.gz
mkdir -p $(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM)
tar -f $< -x --gzip --directory $(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM)
(cd $(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM); tar --create --xz -f ../../$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM).orig.tar.xz --exclude-from ../debian/orig.excludes --mtime=20121221 * .gitignore)
$(RM) -r $(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM)
$(subst android-platform-,,$(DEB_SOURCE)).tar.gz:
wget https://android.googlesource.com/platform/$(subst -,/,$(subst android-platform-,,$(DEB_SOURCE)))/+archive/android-$(subst +,_,$(DEB_VERSION_UPSTREAM)).tar.gz -O $@
|