Skip to content

Instantly share code, notes, and snippets.

@fuzzmz
Last active January 14, 2024 09:12
Show Gist options
  • Select an option

  • Save fuzzmz/5582806 to your computer and use it in GitHub Desktop.

Select an option

Save fuzzmz/5582806 to your computer and use it in GitHub Desktop.

Revisions

  1. fuzzmz revised this gist May 15, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion empty_rpm.md
    Original file line number Diff line number Diff line change
    @@ -14,4 +14,4 @@ First create a package_name.spec file with the following content:
    Package description here
    %files

    After this file is created simply run `# rpmbuild -bb php.spec` to create the package.
    After this file is created simply run `# rpmbuild -bb package_name.spec` to create the package.
  2. fuzzmz created this gist May 15, 2013.
    17 changes: 17 additions & 0 deletions empty_rpm.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    How to create an empty .rpm file
    ================================

    First create a package_name.spec file with the following content:

    Summary: Summary here
    Name: package_name
    Version: 0
    Release: 0
    License: Public
    Group: Applications/System
    Requires: libXrandr.i686,gtk2.i686,libXtst.i686
    %description
    Package description here
    %files

    After this file is created simply run `# rpmbuild -bb php.spec` to create the package.