Star: Difference between revisions
From CBLFS
Jump to navigationJump to search
| Line 17: | Line 17: | ||
Compile the package: | Compile the package: | ||
CCOMPILE=${CC} CONFFLAGS="--build=${CLFS_HOST} --host=${CLFS_TARGET}" make | |||
Install the package: | Install the package: | ||
make install | make INS_DIR=/usr install | ||
== Multilib == | == Multilib == | ||
Revision as of 18:59, 13 February 2008
| Download Source: | URL ftp://ftp.berlios.de/pub/star/alpha/star-1.5.tar.bz2 |
|---|
Introduction to Star
A tape archiving program which backs up Extended Attributes and Access Control Lists on files. Follows POSIX standards.
Project Homepage: http://cdrecord.berlios.de/old/private/star.html
Dependencies
Required
Non-Multilib
Compile the package:
CCOMPILE=${CC} CONFFLAGS="--build=${CLFS_HOST} --host=${CLFS_TARGET}" make
Install the package:
make INS_DIR=/usr install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
--libdir=/usr/lib32 &&
make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \
--libdir=/usr/lib64 &&
make
Install the package:
make install