skroll

debian packaging for skroll
git clone git://git.unixkoans.com/skroll.git
Log | Files | Refs | README | LICENSE

commit 8e839fb01826f81bfa2b08d7833f13ac1af84f84
parent d6561c6325e60a026b5a2462675764e7af8dfa5c
Author: Xiaodong Xu <[email protected]>
Date:   Tue Feb 28 13:53:31 +0800

Add debian directory for packaging

Diffstat:
debian/changelog | 5+++++
debian/compat | 1+
debian/control | 17+++++++++++++++++
debian/copyright | 36++++++++++++++++++++++++++++++++++++
debian/docs | 1+
debian/rules | 25+++++++++++++++++++++++++
debian/source/format | 1+
7 files changed, 86 insertions(+), 0 deletions(-)
diff --git a/debian/changelog b/debian/changelog @@ -0,0 +1,5 @@ +skroll (0.6-1) unstable; urgency=low + + * Initial release + + -- Xiaodong Xu <[email protected]> Tue, 28 Feb 2017 13:41:05 +0800 diff --git a/debian/compat b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control @@ -0,0 +1,17 @@ +Source: skroll +Section: misc +Priority: optional +Maintainer: Xiaodong Xu <[email protected]> +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.5 +Homepage: http://git.z3bra.org/skroll/ +Vcs-Git: git://z3bra.org/skroll +Vcs-Browser: http://git.z3bra.org/skroll/ + +Package: skroll +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: scroll a text to stdout + Skroll is a small utility that you can use to make a text scroll. + Pipe text to it, and it will scroll a given number of letters from right to + left. diff --git a/debian/copyright b/debian/copyright @@ -0,0 +1,36 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: skroll +Source: <url://example.com> + +Files: * +Copyright: 2004 Sam Hocevar <[email protected]> +License: WTFPL + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + . + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + . + 0. You just DO WHAT THE FUCK YOU WANT TO. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2017 Xiaodong Xu <[email protected]> +License: GPL-2+ + This package 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 2 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 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/docs b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules @@ -0,0 +1,25 @@ +#!/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 + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +# main packaging script based on dh7 syntax +%: + dh $@ + +override_dh_auto_install: + $(MAKE) DESTDIR=$$(pwd)/debian/skroll PREFIX=/usr install diff --git a/debian/source/format b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)