18 lines
509 B
Text
18 lines
509 B
Text
|
# Template file for 'boost-jam'.
|
||
|
#
|
||
|
short_desc="${short_desc} (Boost.Jam utility)"
|
||
|
long_desc="
|
||
|
Boost is a set of free, peer-reviewed, C++ libraries. The emphasis is on
|
||
|
portable libraries which work well with the ISO C++ Standard Library.
|
||
|
|
||
|
This package provides the Boost.Jam module, a make-like utility. This
|
||
|
is the tool used to build Boost itself, and is based on Perforce Jam."
|
||
|
|
||
|
Add_dependency run glibc
|
||
|
|
||
|
do_install()
|
||
|
{
|
||
|
mkdir -p ${DESTDIR}/usr/bin
|
||
|
mv ${SRCPKGDESTDIR}/usr/bin/bjam ${DESTDIR}/usr/bin
|
||
|
}
|