rpmbuild環境と便利なコマンド
必要なパッケージをインストール
sudo yum install -y rpmdevtools yum-utils
環境を構築
$ rpmdev-setuptree
$ tree -L 1 rpmbuild/
rpmbuild/
├── BUILD
├── BUILDROOT
├── RPMS
├── SOURCES
├── SPECS
└── SRPMS
specファイルに含まれているソースやパッチをダウンロードして展開する
$ spectool -g -R ./your-spec.spec
# specに含まれるソースやパッチの一覧を表示
$ spectool -l ./your-spec.spec
specの BuildRequires に指定されてるものをインストールする
$ sudo yum-builddep ./your-spec.spec
ビルド環境の変数とかマクロとか確認する
$ rpm --showrc
ビルドする
$ rpmbuild -ba ./your-spec.spec
参考
http://www.sssg.org/blogs/naoya/archives/1309
http://vinelinux.org/docs/vine6/making-rpm/env-and-macro.html
Author And Source
この問題について(rpmbuild環境と便利なコマンド), 我々は、より多くの情報をここで見つけました https://qiita.com/iwai/items/c0160fddf58a7c0cc356著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .