PAM-less i3lock-color fork
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.
|
|
|
#!/usr/bin/make -f
|
|
|
|
# vi: ts=8 sw=8 noet
|
|
|
|
|
|
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
|
|
-include /usr/share/dpkg/buildflags.mk
|
|
|
|
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh build
|
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh clean
|
|
|
|
|
|
|
|
install: build install-stamp
|
|
|
|
install-stamp:
|
|
|
|
dh install
|
|
|
|
touch install-stamp
|
|
|
|
|
|
|
|
binary-arch: install
|
|
|
|
dh binary-arch
|
|
|
|
|
|
|
|
binary-indep: install
|
|
|
|
dh binary-indep
|
|
|
|
|
|
|
|
binary: binary-arch binary-indep
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
$(MAKE) DESTDIR=$(CURDIR)/debian/i3lock/ install
|