This commit is contained in:
Marc Wäckerlin
2011-01-27 06:35:33 +00:00
parent 63070140f8
commit 9ce6f20adc
11 changed files with 103 additions and 28 deletions

14
qt/makefile Normal file
View File

@@ -0,0 +1,14 @@
QT=$(shell ls -1 | sed -n 's/\(qt-.*\)\.tar\.gz/\1/p')
all: ${QT}
cd $< && (echo "yes" | ./configure -opensource)
cd $< && make
maintainer-clean: clean
-rm -rf ${QT}
${QT}: ${QT}.tar.gz
tar xzvf $<
cd $@ && patch -p1 < ../patch/qt-sources-patch.diff
.PHONY: maintainer-clean all