updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / firefoxqs / PKGBUILD
blob370f55b841d5233fea95d7ee4d5722fb4bd799b8
1 # FirefoxQS: Installer: Arch
2 # Contributor: Chris Giles <Chris.G.27 (at) Gmail.com>
3 # Contributor: shamrok <szamrok@gmail.com>
5 basename=firefox
6 pkgname=${basename}qs
7 pkgver=0.1.3
8 pkgrel=1
9 pkgdesc="Firefox Quickstarter is a small Qt application that runs in the System Tray"
10 arch=('i686' 'x86_64')
11 url="http://kde-apps.org/content/show.php?content=31014"
12 license=('GPL')
13 depends=("kdelibs3" "${basename}")
14 makedepends=('autoconf')
16 source=(http://dl.sourceforge.net/sourceforge/mozillaqs/${pkgname}-${pkgver}.tar.bz2)
17 sha1sums=('cac7db5627d895172cc3353308ff88067ad5751b')
19 build() {
20         cd ${srcdir}/${pkgname}
22         # Build
23         ./configure --prefix=/opt/kde --without-arts --disable-debug || return 1
24         sed -i -e "s/run automake-1.9/run automake/" Makefile || return 1
25         sed -i -e "s/run aclocal-1.9/run aclocal/" Makefile || return 1
26         make || return 1
27         make DESTDIR=${pkgdir} install || return 1