kernel-install-vl.spec 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Name: kernel-install
  2. Summary: A post-install script for kernel
  3. Summary(ja): kernelのインストール後処理を行うスクリプト
  4. Version: 248
  5. Release: 1%{?_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. License: LGPL2.1+
  10. Source0: kernel-install
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildArch: noarch
  13. Requires: dracut
  14. Recommends: grub2
  15. %description
  16. kernel-install is a script extracted from systemd, and will be called
  17. after installation of kernel.
  18. %description -l ja
  19.  kernel-installはsystemdの一部であり、kernelがインストールされた後の処理を
  20. 行います。
  21. %prep
  22. %build
  23. %install
  24. %{__rm} -rf %{buildroot}
  25. mkdir -p %{buildroot}%{_bindir}/
  26. install -Dpm755 %{SOURCE0} %{buildroot}%{_bindir}/
  27. %clean
  28. %{__rm} -rf %{buildroot}
  29. %files
  30. %defattr(-,root,root)
  31. %{_bindir}/*
  32. %changelog
  33. * Tue Apr 06 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 248-1
  34. - initial build for Vine Linux.
  35. - brought from systemd-248.