8.26.3. Contents of Attr
Installed programs: attr, getfattr, and setfattr
Installed library: libattr.so
Installed directories: /usr/include/attr and /usr/share/doc/attr-2.5.2
The Attr package contains utilities to administer the extended attributes of filesystem objects.
Prepare Attr for compilation:
./configure --prefix=/usr \
--disable-static \
--sysconfdir=/etc \
--docdir=/usr/share/doc/attr-2.5.2Compile the package:
make
The tests must be run on a filesystem that supports extended attributes such as the ext2, ext3, or ext4 filesystems. To test the results, issue:
make check
Install the package:
make install
Clean previous build:
make distclean
Prepare Attr for compilation:
CC="gcc -m32" ./configure \
--prefix=/usr \
--disable-static \
--sysconfdir=/etc \
--libdir=/usr/lib32 \
--host=i686-pc-linux-gnuCompile the package:
make
Install the package:
make DESTDIR=$PWD/DESTDIR install cp -Rv DESTDIR/usr/lib32/* /usr/lib32 rm -rf DESTDIR