commit c3ad150c33aeaac3942e8932eb5366c046f0c703b77b22a8d59ef3f85966937c Author: OBS User mrdocs Date: Thu Feb 2 17:31:20 2012 +0000 Accepting request 102436 from home:malcolmlewis:Gnome New package. OBS-URL: https://build.opensuse.org/request/show/102436 OBS-URL: https://build.opensuse.org/package/show/utilities/fbcat?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/fbcat-0.2.tar.gz b/fbcat-0.2.tar.gz new file mode 100644 index 0000000..5bf7f02 --- /dev/null +++ b/fbcat-0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8e2a29b70e23dd842dfdb0657b884b789b1d486685afbdde7cf7f75487e47 +size 11825 diff --git a/fbcat.changes b/fbcat.changes new file mode 100644 index 0000000..f58eecf --- /dev/null +++ b/fbcat.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sun Jan 29 00:08:26 UTC 2012 - malcolmlewis@opensuse.org + +- Initial build. + diff --git a/fbcat.spec b/fbcat.spec new file mode 100644 index 0000000..99d6503 --- /dev/null +++ b/fbcat.spec @@ -0,0 +1,58 @@ +# +# spec file for package fbcat +# +# Copyright (c) 2012 Malcolm J Lewis +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: fbcat +Version: 0.2 +Release: 0 +License: GPL-2.0 +Summary: Framebuffer screenshot programs +Url: http://code.google.com/p/fbcat/ +Group: Productivity/Graphics/Convertors +Source0: http://fbcat.googlecode.com/files/fbcat-0.2.tar.gz +BuildRequires: docbook +BuildRequires: docbook-xsl-stylesheets +BuildRequires: libxml2 +BuildRequires: libxslt +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Contains fbcat and fbgrab for taking a screenshot using the framebuffer +device. + +%prep +%setup -q + +%build +make CFLAGS='%{optflags}' +cd doc +make + +%install +mkdir -p %{buildroot}%{_bindir} +install -m 0755 fbcat fbgrab %{buildroot}%{_bindir}/ +mkdir -p %{buildroot}%{_mandir}/man1/ +install -m 0644 doc/fbcat.1 doc/fbgrab.1 %{buildroot}%{_mandir}/man1/ + +%files +%defattr(-,root,root) +%doc COPYING doc/changelog +%{_bindir}/fbcat +%{_bindir}/fbgrab +%{_mandir}/man1/fbcat.1%{?ext_man} +%{_mandir}/man1/fbgrab.1%{?ext_man} + +%changelog