parent
0df1524976
commit
86720c72f9
4
Makefile
4
Makefile
@ -32,3 +32,7 @@ clean:
|
||||
.PHONY: install
|
||||
install:
|
||||
$(Q) install -p -D -m 0755 $(EXE) $(DESTDIR)${PREFIX}/lume
|
||||
|
||||
.PHONY: deb
|
||||
deb:
|
||||
$(Q) dpkg-buildpackage -us -uc -b
|
||||
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
lume (0.1.0) UNRELEASED; urgency=medium
|
||||
|
||||
* Fake entry.
|
||||
|
||||
-- Ryan Cavicchioni <ryan@cavi.cc> Thu, 08 Apr 2021 02:14:36 +0000
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
9
|
6
debian/control
vendored
Normal file
6
debian/control
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
Source: lume
|
||||
Maintainer: Ryan Cavicchioni <ryan@cavi.cc>
|
||||
|
||||
Package: lume
|
||||
Architecture: any
|
||||
Description: A CLI tool for the LIFX HTTP API
|
18
debian/rules
vendored
Executable file
18
debian/rules
vendored
Executable file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
DISTRIBUTION = $(shell lsb_release -sr)
|
||||
VERSION = 0.1.0
|
||||
PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_auto_clean:
|
||||
override_dh_auto_test:
|
||||
override_dh_auto_build:
|
||||
override_dh_auto_install:
|
||||
make
|
||||
make install DESTDIR=debian/lume
|
||||
|
||||
override_dh_gencontrol:
|
||||
dh_gencontrol -- -v$(PACKAGEVERSION)
|
Loading…
Reference in New Issue
Block a user