diff --git a/Makefile.in b/Makefile.in
index ee339ca97d7537943ffa425386c9c19706f1f85e..9d38500106538515384aea6fce958b0f7722b30b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -24,3 +24,6 @@ install:
 	(for f in $(LIB_FILES:lib/%=%) ; do \
 		$(INSTALL) -m 755 lib/$$f $(DESTDIR)$(NOBLOGS_LIB_DIR)/$$f ; \
 	 done)
+
+clean:
+
diff --git a/debian/README b/debian/README
new file mode 100644
index 0000000000000000000000000000000000000000..80968ae0b8fbfcd876128e7bb720a002ad8d158b
--- /dev/null
+++ b/debian/README
@@ -0,0 +1,6 @@
+The Debian Package noblogs-cli
+----------------------------
+
+Comments regarding the Package
+
+ -- ale <debian@autistici.org>  Thu, 18 Aug 2016 13:01:47 +0000
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000000000000000000000000000000000000..abbb663834d08ace9d927662423e4e15fc099925
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+noblogs-cli (0.1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Autistici/Inventati <debian@autistici.org>  Thu, 18 Aug 2016 13:01:47 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000000000000000000000000000000000000..ec635144f60048986bc560c5576355344005e6e7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000000000000000000000000000000000000..17d57251f37756cbe56aba23f23a9ab2ef2f8fe7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: noblogs-cli
+Section: admin
+Priority: optional
+Maintainer: Autistici/Inventati <debian@autistici.org>
+Build-Depends: debhelper (>= 9), autotools-dev
+Standards-Version: 3.9.5
+
+Package: noblogs-cli
+Architecture: all
+Depends: php5-cli, ${shlibs:Depends}, ${misc:Depends}
+Description: Command-line tool to manage noblogs.
+ CLI tool to perform various maintenance tasks on a noblogs installation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000000000000000000000000000000000000..2b5974e43c362955b55f6ebde531f0294f0cb1c0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: noblogs-cli
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+           <years> <likewise for another author>
+License: GPL-3.0+
+
+Files: debian/*
+Copyright: 2016 ale <debian@autistici.org>
+License: GPL-3.0+
+
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid to pick license terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000000000000000000000000000000000000..b43bf86b50fd8d3529a0dc062c30006ed38f309e
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000000000000000000000000000000000000..bf2ec491621dad8ab9fd5a43028f8373455ac2db
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+%:
+	dh $@  --with autotools-dev
+
+override_dh_auto_configure:
+	dh_auto_configure -- \
+	--with-php=/opt/noblogs/bin/php-noblogs \
+	--with-wp-root=/opt/noblogs
+
+
+
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000000000000000000000000000000000000..89ae9db8f88b823b6a7eabf55e203658739da122
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)