2009-12-12 11:58:50 +01:00
|
|
|
# Template file for 'xbps-static'.
|
|
|
|
#
|
2010-10-31 01:38:59 +02:00
|
|
|
short_desc="${short_desc} - static binaries and development files"
|
2009-12-12 11:58:50 +01:00
|
|
|
long_desc="${long_desc}
|
|
|
|
|
|
|
|
This package contains the static binaries and library, that can be
|
|
|
|
used on any GNU/Linux distribution matching the architecture."
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib
|
2010-01-30 15:35:51 +01:00
|
|
|
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
|
2009-12-12 11:58:50 +01:00
|
|
|
mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin
|
|
|
|
mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib
|
|
|
|
}
|