From bfb6181fd3e42b294efc2ecbe0d7530d447e89e2 Mon Sep 17 00:00:00 2001 From: Bernhard M. Wiedemann Date: Sep 13 2019 14:29:36 +0000 Subject: restructure files to remain below github limit of 1000 entries --- diff --git a/abootimg.changes b/abootimg.changes new file mode 100644 index 0000000..315798e --- /dev/null +++ b/abootimg.changes @@ -0,0 +1,37 @@ +------------------------------------------------------------------- +Sat Feb 6 11:38:12 UTC 2016 - mpluskal@suse.com + +- Use optflags when building +- Cleanup spec file with spec-cleaner + +------------------------------------------------------------------- +Mon Sep 17 11:55:41 UTC 2012 - joop.boonen@opensuse.org + +- Corrected the license as it's both GPL-2.0+ and Apache-2.0 + +------------------------------------------------------------------- +Fri Aug 31 13:53:41 UTC 2012 - joop.boonen@opensuse.org + +- Make clean as a binary already exists in the tarball +- Added missing BuildRequires pkgconfig(blkid) + +------------------------------------------------------------------- +Mon Aug 27 12:27:24 UTC 2012 - joop.boonen@opensuse.org + +- cleaned spec file + +------------------------------------------------------------------- +Mon Jul 23 20:15:48 UTC 2012 - sleep_walker@suse.cz + +- fix permissions + +------------------------------------------------------------------- +Mon Jul 23 18:59:25 UTC 2012 - sleep_walker@suse.cz + +- let there be abootimg! + +------------------------------------------------------------------- +Mon Jul 23 14:01:23 UTC 2012 - sleep_walker@suse.cz + +- let there be abootimg! + diff --git a/abootimg.spec b/abootimg.spec new file mode 100644 index 0000000..3cadd51 --- /dev/null +++ b/abootimg.spec @@ -0,0 +1,55 @@ +# +# spec file for package abootimg +# +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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: abootimg +Version: 0.6 +Release: 0 +Summary: Android boot image manipulator +License: GPL-2.0+ and Apache-2.0 +Group: System/Boot +Url: http://gitorious.org/ac100/abootimg +Source: %{name}.tar.bz2 +BuildRequires: pkgconfig(blkid) +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Android boot image manipulator. It can create/update/unpack boot.img - boot +file used by Android OS. + +%prep +%setup -q -n %{name} + +%build +# First make clean as a binary already exists in the tarball +make %{?_smp_mflags} clean +make %{?_smp_mflags} CFLAGS="%{optflags}" + +%install +install -D -m 0755 abootimg %{buildroot}/%{_bindir}/abootimg +install -D -m 0755 abootimg-unpack-initrd %{buildroot}/%{_bindir}/abootimg-unpack-initrd +install -D -m 0755 abootimg-pack-initrd %{buildroot}/%{_bindir}/abootimg-pack-initrd +install -D -m 0644 debian/abootimg.1 %{buildroot}/%{_mandir}/man1/abootimg.1 + +%files +%defattr(-,root,root) +%{_bindir}/abootimg +%{_bindir}/abootimg-pack-initrd +%{_bindir}/abootimg-unpack-initrd +%{_mandir}/man1/abootimg.1%{ext_man} + +%changelog