Commit d9af4c29 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Updated gzip to 1.10

parent 3adbe37f
all:
tar xf gzip-1.9.tar.xz
cd gzip-1.9 && ./configure --build=$(CLFS_TARGET) --prefix=/usr
$(MAKE) -C gzip-1.9
tar xf gzip-1.10.tar.xz
cd gzip-1.10 && ./configure --build=$(CLFS_TARGET) --prefix=/usr
$(MAKE) -C gzip-1.10
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C gzip-1.9 check ; \
$(MAKE) -C gzip-1.10 check ; \
fi
$(MAKE) -C gzip-1.9 install
$(MAKE) -C gzip-1.10 install
mv -v /usr/bin/gzip /bin
rm -rf gzip-1.9
rm -rf gzip-1.10
<project name="gzip">
<target name="temporary-gzip">
<property name="makedir" value="${builddir}/gzip-1.9"/>
<property name="makedir" value="${builddir}/gzip-1.10"/>
<exec executable="tar" failonerror="true">
<arg line="xf packages/gzip/gzip-1.9.tar.xz -C ${builddir}"/>
<arg line="xf packages/gzip/gzip-1.10.tar.xz -C ${builddir}"/>
</exec>
<exec executable="./configure" dir="${makedir}" failonerror="true">
<env key="PATH" path="${PATH}"/>
......
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