A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).

14 lines
287 B

14 years ago
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