You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
06583a28d0 | 6 years ago | |
---|---|---|
.. | ||
README.md | 6 years ago | |
wget-latest.tar.gz | 6 years ago |
README.md
IBM packaging tutorial
https://developer.ibm.com/tutorials/l-rpm1/
There were some details that needed to be fixed in the original .spec file
%define _topdir /home/toor/mywget
You needed to set your _topdir to your user's home directory.- The
make install prefix=$RPM_BUILD_ROOT/usr
needed to bemake install prefix=$RPM_BUILD_ROOT/usr/local
%defattr(-,root,root)
and%attr(0444,root,root)
needed to be typed out by hand. Something happened in the copy paste I guess.