mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
396ece99b6
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1736 dbcabf3a-b0e7-0310-adc4-f8d773084564
76 lines
1.7 KiB
Makefile
Executable File
76 lines
1.7 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
# This is the debhelper compatability version to use.
|
|
export DH_COMPAT=2
|
|
|
|
TMP=`pwd`/debian/irssi-text
|
|
|
|
configure: configure-stamp
|
|
configure-stamp:
|
|
dh_testdir
|
|
./configure --prefix=/usr --exec-prefix=/usr --sysconf=/etc \
|
|
--without-servertest --enable-ipv6 --with-bot --with-proxy \
|
|
--enable-perl=yes --with-perl-lib=vendor
|
|
touch configure-stamp
|
|
|
|
build: configure-stamp build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
$(MAKE) CFLAGS="-O2 -g -Wall"
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
|
|
-$(MAKE) distclean
|
|
-rm -f src/perl/perl-signals-list.h
|
|
-rm -f default-theme.h
|
|
#-rm -f `find . -name "*~"` debian/*debhelper debian/{files,substvars}
|
|
-rm -f default-config.h libtool*
|
|
find -name Makefile -o -name Makefile.PL | xargs rm -f
|
|
|
|
dh_clean build-stamp configure-stamp
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
|
|
$(MAKE) install DESTDIR=$(TMP) PREFIX=$(TMP)/usr
|
|
mv $(TMP)/usr/bin/irssi $(TMP)/usr/bin/irssi-text
|
|
rm -rf $(TMP)/usr/share/doc
|
|
find $(TMP) -name perllocal.pod -o -name .packlist | xargs rm -f
|
|
|
|
# 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_installdocs README TODO AUTHORS docs/*.txt
|
|
dh_installchangelogs NEWS
|
|
dh_installmenu
|
|
dh_undocumented
|
|
ifeq "$(findstring nostrip,$(DEB_BUILD_OPTIONS))" ""
|
|
dh_strip
|
|
endif
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_makeshlibs
|
|
dh_installdeb
|
|
dh_perl
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|