diff --git a/.gitignore b/.gitignore index 93ba37c..4cef221 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ -*.*~ *.bak *.kdev4 +*.orig +*.patch +*~ build +obj-*/ diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c131059 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +cmake-uninstall (0.0.2) experimental; urgency=low + + * Initial release + + -- Oleh Kravchenko Wed, 2 Jan 2019 00:04:24 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..11c0e2c --- /dev/null +++ b/debian/control @@ -0,0 +1,11 @@ +Source: cmake-uninstall +Section: devel +Priority: optional +Maintainer: Oleh Kravchenko +Build-Depends: cmake, git +Homepage: https://gitlab.com/Oleh-Kravchenko/cmake-uninstall + +Package: cmake-uninstall +Architecture: all +Depends: cmake +Description: Adds uninstall target to CMake projects diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..734eb2f --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --buildsystem cmake --without autoreconf