17 lines
461 B
Text
17 lines
461 B
Text
# Template file for 'libsensors-devel'.
|
|
#
|
|
depends="glibc-devel libsensors"
|
|
short_desc="lm-sensors development kit"
|
|
long_desc="${long_desc}
|
|
|
|
This package contains the static library and header files used in
|
|
development."
|
|
|
|
|
|
do_install()
|
|
{
|
|
mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/share/man
|
|
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
|
|
mv ${SRCPKGDESTDIR}/usr/lib/*.*a ${DESTDIR}/usr/lib
|
|
mv ${SRCPKGDESTDIR}/usr/share/man/man3 ${DESTDIR}/usr/share/man
|
|
}
|