Commit 980430d2 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Initial commit

parents
all:
tar xf pkg-config-0.29.2.tar.gz
cd pkg-config-0.29.2 && ./configure --build=$(CLFS_TARGET) --prefix=/usr --with-internal-glib --disable-host-tool --docdir=/usr/share/doc/pkg-config-0.29.2
$(MAKE) -C pkg-config-0.29.2
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C pkg-config-0.29.2 check ; \
fi
$(MAKE) -C pkg-config-0.29.2 install
rm -rf pkg-config-0.29.2
<project name="pkg-config">
<target name="cross-pkg-config">
<property name="makedir" value="${builddir}/pkg-config-0.29.2"/>
<exec executable="tar" failonerror="true">
<arg line="xf packages/pkg-config/pkg-config-0.29.2.tar.gz -C ${builddir}"/>
</exec>
<exec executable="./configure" dir="${makedir}" failonerror="true">
<arg line="--prefix=${sysrootdir}/cross-tools --host=${CLFS_TARGET} --with-pc-path=${sysrootdir}/tools/lib/pkgconfig:${sysrootdir}/tools/share/pkgconfig --with-internal-glib"/>
</exec>
<exec executable="make" dir="${makedir}" failonerror="true"/>
<exec executable="make" dir="${makedir}" failonerror="true">
<arg line="install"/>
</exec>
<delete dir="${makedir}"/>
</target>
</project>
bin
/usr/bin/.*
autoconf
/usr/share/aclocal/.*
doc
/usr/share/doc/.*
man
/usr/share/man/.*
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment