How to compile a package in AIX when we download its source?

How to compile a package surce in AIX when we download its source?

Typical instructions.
The package arrives as package.tar.gz
After the tar command, cd package and look for README, INSTALL.sh etc

gzip -d package.tar.gz
tar xvf package.tar
cd package
./configure
./make
./make install

Thank you