2.6. パッケージ化を行うためのソースコードの準備
開発者は、ソースコードの圧縮アーカイブとしてソフトウェアを配布するため、パッケージの作成に使用されます。RPM パッケージャーは、準備の整ったソースコードアーカイブと連携します。
ソフトウェアは、ソフトウェアライセンスとともに配布する必要があります。
この手順では、LICENSE
ファイルのサンプルコンテンツとして GPLv3 ライセンステキストを使用します。
手順
LICENSE
ファイルを作成し、以下の内容が含まれることを確認します。$ cat /tmp/LICENSE This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
関連情報
- このセクションで作成したコードは、こちら にあります。