2001-02-27 02:04:08 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# Made with the aid of debmake, by Christoph Lameter,
|
|
|
|
# based on the sample debian/rules file for GNU hello by Ian Jackson.
|
2001-07-28 07:53:11 +00:00
|
|
|
#export DH_VERBOSE=1
|
|
|
|
# This is the debhelper compatability version to use.
|
2002-01-04 10:39:51 +00:00
|
|
|
export DH_COMPAT=3
|
2001-02-27 02:04:08 +00:00
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
package := mplayer
|
2002-02-03 20:27:20 +00:00
|
|
|
prefix := $(shell pwd)/debian/$(package)
|
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
arch := $(shell dpkg --print-architecture)
|
|
|
|
|
2001-02-27 02:04:08 +00:00
|
|
|
|
2001-07-28 07:53:11 +00:00
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp:
|
|
|
|
dh_testdir
|
|
|
|
# Add here commands to configure the package.
|
2001-02-27 02:04:08 +00:00
|
|
|
$(checkdir)
|
2002-12-07 21:36:25 +00:00
|
|
|
./configure --prefix=/usr --confdir=/etc/mplayer --enable-runtime-cpudetection --enable-gui $(DEB_BUILD_OPTIONS)
|
2001-07-28 07:53:11 +00:00
|
|
|
|
|
|
|
touch configure-stamp
|
|
|
|
|
|
|
|
build: configure-stamp build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
# commands to compile the package.
|
|
|
|
${MAKE}
|
2001-07-28 07:53:11 +00:00
|
|
|
|
|
|
|
touch build-stamp
|
2001-02-27 02:04:08 +00:00
|
|
|
|
|
|
|
clean:
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp configure-stamp
|
2001-02-27 02:04:08 +00:00
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
# commands to clean up after the build process.
|
2001-08-27 20:03:01 +00:00
|
|
|
-$(MAKE) distclean
|
2003-09-21 13:12:58 +00:00
|
|
|
rm -f help_mp.h config.h config.mak libao2/config.mak libvo/config.mak Gui/config.mak
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_clean
|
2001-02-27 02:04:08 +00:00
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
# Build architecture-independent files here.
|
|
|
|
binary-indep: build
|
|
|
|
# We have nothing to do by default.
|
2001-05-21 08:32:00 +00:00
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
# Build architecture-dependent files here.
|
|
|
|
binary-arch: build
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
2001-12-20 17:18:48 +00:00
|
|
|
# commands to install the package into debian/<packagename>
|
2002-09-03 23:31:11 +00:00
|
|
|
$(MAKE) prefix=$(prefix)/usr BINDIR=$(prefix)/usr/bin CONFDIR=$(prefix)/etc/mplayer LIBDIR=$(prefix)/usr/lib DATADIR=$(prefix)/usr/share/mplayer MANDIR=$(prefix)/usr/share/man install
|
2004-06-29 12:53:34 +00:00
|
|
|
|
2002-02-03 20:27:20 +00:00
|
|
|
dh_link usr/bin/mplayer usr/bin/gmplayer \
|
|
|
|
usr/share/man/man1/mplayer.1.gz usr/share/man/man1/gmplayer.1.gz
|
|
|
|
|
2001-11-07 10:06:51 +00:00
|
|
|
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_installdebconf
|
2003-03-27 18:14:56 +00:00
|
|
|
dh_installdocs --exclude=CVS --exclude=mplayer.1 DOCS/*
|
2003-09-21 13:12:58 +00:00
|
|
|
dh_installexamples etc/example.conf etc/dvb-menu.conf etc/input.conf etc/menu.conf
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_installmenu
|
2004-08-23 08:03:31 +00:00
|
|
|
dh_installmime
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_installinfo
|
2003-04-25 13:57:17 +00:00
|
|
|
dh_installchangelogs
|
|
|
|
#ChangeLog
|
2001-07-28 07:53:11 +00:00
|
|
|
dh_link
|
|
|
|
dh_strip
|
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
|
|
|
# dh_makeshlibs
|
|
|
|
dh_installdeb
|
|
|
|
dh_perl
|
|
|
|
dh_shlibdeps
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#binary-arch: checkroot build
|
|
|
|
# $(checkdir)
|
|
|
|
# -rm -rf debian/tmp
|
|
|
|
# install -d debian/tmp
|
|
|
|
# cd debian/tmp && install -d `cat ../dirs`
|
|
|
|
|
2001-05-21 08:32:00 +00:00
|
|
|
|
2001-02-27 02:04:08 +00:00
|
|
|
# Must have debmake installed for this to work. Otherwise please copy
|
|
|
|
# /usr/bin/debstd into the debian directory and change debstd to debian/debstd
|
2001-07-28 07:53:11 +00:00
|
|
|
# debstd
|
|
|
|
# dpkg-gencontrol -isp
|
|
|
|
# chown -R root.root debian/tmp
|
|
|
|
# chmod -R go=rX debian/tmp
|
|
|
|
# dpkg --build debian/tmp ..
|
2001-02-27 02:04:08 +00:00
|
|
|
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
|
|
|
|
.PHONY: binary binary-arch binary-indep clean checkroot
|