1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/usr/bin/make -f
include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/pkg-info.mk
export DEB_VERSION_UPSTREAM
export DEB_HOST_MULTIARCH
export DEB_CFLAGS_MAINT_APPEND = -fPIC -DNDEBUG
export DEB_CXXFLAGS_MAINT_APPEND = -fPIC -DNDEBUG
export DEB_LDFLAGS_MAINT_APPEND = -fPIC
debian/out/lib%.so: debian/lib%.mk
dh_auto_build --buildsystem=makefile -- --file=$<
debian/out/%: debian/%.mk
dh_auto_build --buildsystem=makefile -- --file=$<
debian/%.1: debian/%.1.md
pandoc --standalone --from=markdown-smart --to=man --output=$@ $<
%:
dh $@
override_dh_auto_build-indep:
dh_auto_build --buildsystem=gradle -- \
--settings-file debian/settings.gradle
override_dh_auto_clean-indep:
dh_auto_clean --indep --buildsystem=gradle
mh_clean
override_dh_auto_build-arch: debian/out/hprof-conv
override_dh_install-indep:
dh_install --indep
chmod +x debian/dalvik-exchange/usr/lib/android-sdk/build-tools/debian/dx
mh_install
|