diff --git a/DEBIAN/control b/DEBIAN/control deleted file mode 100644 index f99ef76..0000000 --- a/DEBIAN/control +++ /dev/null @@ -1,9 +0,0 @@ -Package: clightd -Version: 2.1 -Section: base -Priority: optional -Architecture: amd64 -Depends: libsystemd0 (>= 221), libudev1, libxrandr2, libxext6, libx11-6, libpolkit-backend-1-0, libxss1 -Suggests: clight -Maintainer: Federico Di Pierro -Description: Clightd bus interface to set screen brightness and gamma and to capture frames from webcam devices. diff --git a/README.md b/README.md index 4972129..d98ef27 100644 --- a/README.md +++ b/README.md @@ -129,16 +129,5 @@ On archlinux this is automatically accomplished by PKGBUILD. ## Arch AUR packages Clightd is available on AUR: https://aur.archlinux.org/packages/clightd-git/ . -## Deb packages -Deb package for amd64 architecture is provided for each [release](https://github.com/FedeDP/Clightd/releases). -Moreover, you can very easily build your own packages, if you wish to test latest Clightd code. -You only need to issue: - - $ make deb - -A deb file will be created in "Debian" folder, inside Clightd root. -Please note that i am developing clightd from archlinux, thus you can encounter some packaging issues. Please, report back. -Note also that debian package misses ddcutil dependency (as ddcutil C api/shared object is not yet packaged), so its support will be disabled. - ## License This software is distributed with GPL license, see [COPYING](https://github.com/FedeDP/Clightd/blob/master/COPYING) file for more informations. diff --git a/TODO.md b/TODO.md index f1f308f..335a50b 100644 --- a/TODO.md +++ b/TODO.md @@ -1,3 +1,8 @@ +## 2.2 + +- [x] Drop deb package +- [x] Some really small fixes + ## 2.X - [ ] Keep it up to date with possible ddcutil api changes diff --git a/makefile b/makefile index 65a148a..95e899a 100644 --- a/makefile +++ b/makefile @@ -11,8 +11,6 @@ POLKITPOLICYDIR = /usr/share/polkit-1/actions MODULESLOADDDC = i2c_clightd.conf MODULESLOADDIR = /usr/lib/modules-load.d EXTRADIR = Scripts -DEBIANDIR = ./Clightd -DEBOUTPUTDIR = ./Debian RM = rm -f RMDIR = rm -rf INSTALL = install -p @@ -110,24 +108,6 @@ clightd-debug: objects-debug clean: @cd $(SRCDIR); $(RM) *.o -deb: all install-deb build-deb clean-deb - -install-deb: DESTDIR=$(DEBIANDIR) -install-deb: install - -build-deb: - $(info setting deb package version.) - @sed -i 's/Version:.*/Version: $(CLIGHTD_VERSION)/' ./DEBIAN/control - $(info copying debian build script.) - @cp -r DEBIAN/ $(DEBIANDIR) - @$(INSTALL_DIR) $(DEBOUTPUTDIR) - $(info creating debian package.) - @dpkg-deb --build $(DEBIANDIR) $(DEBOUTPUTDIR) - -clean-deb: - $(info cleaning up.) - @$(RMDIR) $(DEBIANDIR) - install: $(info installing bin.) @$(INSTALL_DIR) "$(DESTDIR)$(BINDIR)"