2612230774
--HG-- extra : convert_revision : fb3efd1d5e432a2c8c8aa184a659b5a36a7aff5e
17 lines
480 B
Text
17 lines
480 B
Text
# Template file for 'xbps-devel-static'.
|
|
#
|
|
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."
|
|
|
|
replaces="xbps-static"
|
|
|
|
do_install()
|
|
{
|
|
mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib
|
|
mv ${SRCPKGDESTDIR}/include ${DESTDIR}/usr/include
|
|
mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin
|
|
mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib
|
|
}
|