2010-01-13 17:41:47 -01:00
|
|
|
# Template file for 'xbps-devel-static'.
|
2009-11-26 02:26:31 -01:00
|
|
|
#
|
|
|
|
short_desc="${sourcepkg} static binaries"
|
|
|
|
long_desc="${long_desc}
|
|
|
|
|
|
|
|
This package contains the static binaries and library, that can be
|
|
|
|
used on any GNU/Linux distribution matching the architecture."
|
|
|
|
|
2011-01-31 23:30:09 -01:00
|
|
|
provides="xbps-static-9999"
|
2011-01-12 15:17:43 -01:00
|
|
|
replaces="xbps-static>=0"
|
2009-12-23 23:38:32 -01:00
|
|
|
|
2009-11-26 02:26:31 -01:00
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib
|
2010-12-18 13:28:37 -01:00
|
|
|
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
|
2009-11-26 02:26:31 -01:00
|
|
|
mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin
|
|
|
|
mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib
|
|
|
|
}
|