InstallWatch: Difference between revisions

From CBLFS
Jump to navigationJump to search
Created page.
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 5: Line 5:
|}
|}


== Introduction to Installwatch ==
{{Package-Introduction|Installwatch is an extremely simple utility that keeps track of created and modified files during the installation of a new program.  It's fast and easy to use. It doesn't require a "pre-install" phase because it monitors processes while they run.|http://asic-linux.com.mx/~izto/checkinstall/installwatch.html}}
 
Installwatch is an extremely simple utility that keeps track of created and modified files during the installation of a new program.  It's fast and easy to use. It doesn't require a "pre-install" phase because it monitors processes while they run.
 
<b>Package Homepage:</b> http://asic-linux.com.mx/~izto/checkinstall/installwatch.html


== Dependencies ==
== Dependencies ==
None


== Non-Multilib ==
== Non-Multilib ==
Line 19: Line 13:
Compile the package:
Compile the package:


sed -i "s:/usr/local:/usr:g" test-installwatch.c &&
  make
  make


Install the package:
Install the package:


  make install
  make PREFIX=/usr install


== Multilib ==
== Multilib ==
Line 31: Line 26:
Compile the package:
Compile the package:


  CC="gcc ${BUILD32}" make
  sed -i "s:/usr/local:/usr:g" test-installwatch.c &&
sed -i -e "s/^\tgcc/& ${BUILD32}/" \
    -e "s/^\tld/& ${LD_BUILD32}/" Makefile &&
make


Install the package:
Install the package:


  make install
  make PREFIX=/usr install


=== N32 ===
=== N32 ===
Line 41: Line 39:
Compile the package:
Compile the package:


  CC="gcc ${BUILDN32}" make
  sed -i -e "s:/usr/local:/usr:" \
    -e "s:/lib:&32:" test-installwatch.c &&
sed -i "/LIBDIR=/s:/lib:&32:" installwatch &&
sed -i -e "s/^\tgcc/& ${BUILDN32}/" Makefile &&
make


Install the package:
Install the package:


  make install
  make PREFIX=/usr LIBDIR=/usr/lib32 install


=== 64Bit ===
=== 64Bit ===
Line 51: Line 53:
Compile the package:
Compile the package:


  CC="gcc ${BUILD64}" make
sed -i -e "s:/usr/local:/usr:" \
    -e "s:/lib:&64:" test-installwatch.c &&
sed -i "/LIBDIR=/s:/lib:&64:" installwatch &&
sed -i -e "s/^\tgcc/& ${BUILD64}/" Makefile &&
make


Install the package:
Install the package:


  make install
  make PREFIX=/usr LIBDIR=/usr/lib64 install


== Contents ==
== Contents ==
Line 69: Line 75:
!Installed Libraries:
!Installed Libraries:
|installwatch.so
|installwatch.so
|-valign="top"
!Symlinks:
|None
|}
|}


Line 81: Line 84:
|is a utility that keeps track of created and modified files during the installation of a new program.
|is a utility that keeps track of created and modified files during the installation of a new program.
|}
|}
[[Category:Package Management]]

Latest revision as of 17:57, 5 July 2008

Download Source: http://asic-linux.com.mx/~izto/checkinstall/files/source/installwatch-0.6.3.tar.gz

Introduction to InstallWatch

Installwatch is an extremely simple utility that keeps track of created and modified files during the installation of a new program. It's fast and easy to use. It doesn't require a "pre-install" phase because it monitors processes while they run.

Project Homepage: http://asic-linux.com.mx/~izto/checkinstall/installwatch.html

Dependencies

Non-Multilib

Compile the package:

sed -i "s:/usr/local:/usr:g" test-installwatch.c &&
make

Install the package:

make PREFIX=/usr install

Multilib

32Bit

Compile the package:

sed -i "s:/usr/local:/usr:g" test-installwatch.c &&
sed -i -e "s/^\tgcc/& ${BUILD32}/" \
    -e "s/^\tld/& ${LD_BUILD32}/" Makefile &&
make

Install the package:

make PREFIX=/usr install

N32

Compile the package:

sed -i -e "s:/usr/local:/usr:" \
    -e "s:/lib:&32:" test-installwatch.c &&
sed -i "/LIBDIR=/s:/lib:&32:" installwatch &&
sed -i -e "s/^\tgcc/& ${BUILDN32}/" Makefile &&
make

Install the package:

make PREFIX=/usr LIBDIR=/usr/lib32 install

64Bit

Compile the package:

sed -i -e "s:/usr/local:/usr:" \
    -e "s:/lib:&64:" test-installwatch.c &&
sed -i "/LIBDIR=/s:/lib:&64:" installwatch &&
sed -i -e "s/^\tgcc/& ${BUILD64}/" Makefile &&
make

Install the package:

make PREFIX=/usr LIBDIR=/usr/lib64 install

Contents

Installed Directories: None
Installed Programs: installwatch
Installed Libraries: installwatch.so

Short Descriptions

installwatch is a utility that keeps track of created and modified files during the installation of a new program.