mkspec (0898782247ae533d1f4e47a06bc5d4870931b284) mkspec (16a122c743b327f714606eff2cd8ff31c206bafc)
1#!/bin/sh
2#
3# Output a simple RPM spec file.
4# This version assumes a minimum of RPM 4.0.3.
5#
6# The only gothic bit here is redefining install_post to avoid
7# stripping the symbols from files in the kernel which we want
8#

--- 32 unchanged lines hidden (view full) ---

41sed -e '/^DEL/d' -e 's/^\t*//' <<EOF
42 Name: kernel
43 Summary: The Linux Kernel
44 Version: $__KERNELRELEASE
45 Release: $(cat .version 2>/dev/null || echo 1)
46 License: GPL
47 Group: System Environment/Kernel
48 Vendor: The Linux Community
1#!/bin/sh
2#
3# Output a simple RPM spec file.
4# This version assumes a minimum of RPM 4.0.3.
5#
6# The only gothic bit here is redefining install_post to avoid
7# stripping the symbols from files in the kernel which we want
8#

--- 32 unchanged lines hidden (view full) ---

41sed -e '/^DEL/d' -e 's/^\t*//' <<EOF
42 Name: kernel
43 Summary: The Linux Kernel
44 Version: $__KERNELRELEASE
45 Release: $(cat .version 2>/dev/null || echo 1)
46 License: GPL
47 Group: System Environment/Kernel
48 Vendor: The Linux Community
49 URL: http://www.kernel.org
49 URL: https://www.kernel.org
50$S Source: kernel-$__KERNELRELEASE.tar.gz
51 Provides: $PROVIDES
52 %define __spec_install_post /usr/lib/rpm/brp-compress || :
53 %define debug_package %{nil}
54
55 %description
56 The Linux Kernel, the operating system core itself
57

--- 90 unchanged lines hidden ---
50$S Source: kernel-$__KERNELRELEASE.tar.gz
51 Provides: $PROVIDES
52 %define __spec_install_post /usr/lib/rpm/brp-compress || :
53 %define debug_package %{nil}
54
55 %description
56 The Linux Kernel, the operating system core itself
57

--- 90 unchanged lines hidden ---