A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
778 B

14 years ago
QT=$(shell ls -1 | sed -n 's/\(qt-.*\)\.tar\.gz/\1/p')
PREFIX=/usr/local/trolltech/qt
14 years ago
all: build-lin32 build
14 years ago
maintainer-clean: clean
-rm -rf ${QT} ${QT}-lin32
14 years ago
install: install-lin32
rm -rf ${PREFIX}
14 years ago
cd ${QT} && make install
14 years ago
${QT}: ${QT}.tar.gz
tar xzvf $<
cd $@ && patch -p1 < ../patch/qt-sources-patch.diff
build: ${QT}
-cd $< && make confclean
cd $< && (echo "yes" | ./configure -opensource -prefix ${PREFIX})
cd $< && make
install-lin32:
rm -rf ${PREFIX}-32bit
cd ${QT}-lin32 && make install
${QT}-lin32: ${QT}
cp -a $< $@
build-lin32: ${QT}-lin32
-cd $< && make confclean
cd $< && (echo "yes" | ./configure -opensource -platform linux-g++-32 -prefix ${PREFIX}-32bit)
cd $< && make
.PHONY: maintainer-clean all build install build-lin32 install-lin32