You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.3 KiB
95 lines
2.3 KiB
12 years ago
|
#!/usr/bin/make -f
|
||
|
|
||
|
# Uncomment this to turn on verbose mode.
|
||
|
#export DH_VERBOSE=1
|
||
|
|
||
|
DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde
|
||
|
DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
|
||
|
DEB_CONFIGURE_PREFIX := /opt/trinity
|
||
|
DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
|
||
|
|
||
|
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
|
||
|
|
||
|
version := $(shell sed -n 's/Package: \(.*\)/\1/p' debian/control | head -n 1)
|
||
|
|
||
|
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
||
|
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
||
|
|
||
|
CFLAGS = -Wall -g
|
||
|
|
||
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
||
|
CFLAGS += -O0
|
||
|
else
|
||
|
CFLAGS += -O2
|
||
|
endif
|
||
|
|
||
|
configure: configure-stamp
|
||
|
configure-stamp:
|
||
|
dh_testdir
|
||
|
|
||
|
CFLAGS="$(CFLAGS)" PATH=/opt/trinity/bin:$(PATH) ./configure --prefix=/opt/trinity --disable-static
|
||
|
|
||
|
touch $@
|
||
|
|
||
|
build: build-stamp
|
||
|
build-stamp: configure-stamp
|
||
|
dh_testdir
|
||
|
|
||
|
env PATH=/opt/trinity/bin:$(PATH) $(MAKE)
|
||
|
|
||
|
touch $@
|
||
|
|
||
|
clean:
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
rm -f build-stamp configure-stamp
|
||
|
|
||
|
[ ! -f Makefile ] || $(MAKE) clean
|
||
|
|
||
|
dh_clean
|
||
|
|
||
|
install: build
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_clean -k
|
||
|
dh_installdirs -A opt/trinity/include/mlt++ opt/trinity/lib
|
||
|
|
||
|
env PATH=/opt/trinity/bin:$(PATH) $(MAKE) install DESTDIR=$(CURDIR)/debian/${version}
|
||
|
|
||
|
mkdir -p debian/libmlt++-trinity-dev/opt/trinity/lib
|
||
|
mkdir -p debian/libmlt++0.2.5-trinity/opt/trinity
|
||
|
|
||
|
mv debian/${version}/opt/trinity/include/mlt++/* \
|
||
|
debian/libmlt++-trinity-dev/opt/trinity/include/mlt++
|
||
|
|
||
|
mv debian/${version}/opt/trinity/lib/libmlt++.so \
|
||
|
debian/libmlt++-trinity-dev/opt/trinity/lib
|
||
|
|
||
|
# Prune empty directories
|
||
|
find debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
|
||
|
|
||
|
# Build architecture-independent files here.
|
||
|
binary-indep: build install
|
||
|
# We have nothing to do by default.
|
||
|
|
||
|
# Build architecture-dependent files here.
|
||
|
binary-arch: build install
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_installchangelogs
|
||
|
dh_installdocs
|
||
|
dh_installman
|
||
|
dh_link
|
||
|
dh_strip
|
||
|
dh_compress
|
||
|
dh_fixperms
|
||
|
dh_makeshlibs -V 'libmlt++0.2.5-trinity (>= 0.2.5~svn20071228)'
|
||
|
dh_installdeb
|
||
|
dh_shlibdeps -l/opt/trinity/lib
|
||
|
dh_gencontrol
|
||
|
dh_md5sums
|
||
|
dh_builddeb
|
||
|
|
||
|
binary: binary-indep binary-arch
|
||
|
.PHONY: build clean binary-indep binary-arch binary install
|