
4 changed files with 24 additions and 58 deletions
@ -1 +1 @@ |
|||||
5 |
7 |
||||
|
@ -0,0 +1 @@ |
|||||
|
i3lock.1 |
@ -1,67 +1,32 @@ |
|||||
#!/usr/bin/make -f |
#!/usr/bin/make -f |
||||
# -*- makefile -*- |
# vi: ts=8 sw=8 noet |
||||
# Sample debian/rules that uses debhelper. |
|
||||
# This file was originally written by Joey Hess and Craig Small. |
|
||||
# As a special exception, when this file is copied by dh-make into a |
|
||||
# dh-make output file, you may use that output file without restriction. |
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make. |
|
||||
|
|
||||
# Uncomment this to turn on verbose mode. |
DPKG_EXPORT_BUILDFLAGS = 1 |
||||
#export DH_VERBOSE=1 |
-include /usr/share/dpkg/buildflags.mk |
||||
|
|
||||
config.status: configure |
|
||||
dh_testdir |
|
||||
touch $@ |
|
||||
|
|
||||
build: build-arch build-indep |
|
||||
build-arch: build-stamp |
|
||||
build-indep: build-stamp |
|
||||
|
|
||||
|
build: build-stamp |
||||
build-stamp: |
build-stamp: |
||||
dh_testdir |
dh build |
||||
$(MAKE) |
touch build-stamp |
||||
touch $@ |
|
||||
|
|
||||
clean: |
clean: |
||||
dh_testdir |
dh clean |
||||
dh_testroot |
|
||||
rm -f build-stamp |
|
||||
$(MAKE) clean |
|
||||
dh_prep |
|
||||
rm -f debian/files |
|
||||
rm -f debian/i3lock.debhelper.log |
|
||||
|
|
||||
install: build |
install: build install-stamp |
||||
dh_testdir |
install-stamp: |
||||
dh_testroot |
dh install |
||||
dh_prep |
touch install-stamp |
||||
dh_installdirs |
|
||||
|
|
||||
$(MAKE) DESTDIR=$(CURDIR)/debian/i3lock/ install |
binary-arch: install |
||||
mkdir -p $(CURDIR)/debian/i3lock/usr/share/man/man1 |
dh binary-arch |
||||
cp i3lock.1 $(CURDIR)/debian/i3lock/usr/share/man/man1 |
|
||||
|
|
||||
|
binary-indep: install |
||||
|
dh binary-indep |
||||
|
|
||||
# Build architecture-independent files here. |
binary: binary-arch binary-indep |
||||
binary-indep: build install |
|
||||
# We have nothing to do by default. |
|
||||
|
|
||||
# Build architecture-dependent files here. |
override_dh_auto_build: |
||||
binary-arch: build install |
$(MAKE) |
||||
dh_testdir |
|
||||
dh_testroot |
|
||||
dh_installchangelogs |
|
||||
dh_installdocs |
|
||||
dh_installman |
|
||||
dh_link |
|
||||
dh_strip |
|
||||
dh_compress |
|
||||
dh_fixperms |
|
||||
dh_installdeb |
|
||||
dh_shlibdeps |
|
||||
dh_gencontrol |
|
||||
dh_md5sums |
|
||||
dh_builddeb |
|
||||
|
|
||||
binary: binary-indep binary-arch |
override_dh_install: |
||||
.PHONY: build clean binary-indep binary-arch binary install |
$(MAKE) DESTDIR=$(CURDIR)/debian/i3lock/ install |
||||
|
Loading…
Reference in new issue