Google Desktop'u Archlinux'a kurmak isteyenler aşağıdaki PKGBUILD'i deneyebilirler. Bende düzgün bir şekilde çalışıyor, ve Beagle'e göre çok daha hızlı.
License gibi sorunlar çıkarsa, PKGBUILD içinde licence ile alakalı olan yerleri, komutları kaldırın.
# Contributor: Philipp Gildein <rmbl@openspeak-project.org>
pkgname=google-desktop
pkgver=1.0.1.0060
pkgrel=3
pkgdesc="Free desktop search powered by Google"
arch=('i686')
url="http://desktop.google.com/en/linux/"
license=('custom')
depends=('gtk2>=2.2.0' 'glibc>=2.3.2')
makedepends=('rpmextract')
source=(http://dl.google.com/linux/rpm/stable/i386/google-desktop-linux-$pkgver.rpm LICENSE)
md5sums=('e4a12133012dd8c41b569d96e6a39b72'
'4dbbce15a615729e4abedd5a1629a3ac')
build() {
# Unpack the rpm file
cd $startdir/pkg
rpmextract.sh $startdir/src/google-desktop-linux-$pkgver.rpm
# Delete the autoupdater cron file
rm -rf $startdir/pkg/etc/
# Fix the permissions
find $startdir/pkg -type d -perm 700 -print0 | xargs -0 chmod 755
# Install the custom google license
install -D -m 644 $startdir/LICENSE $startdir/pkg/usr/share/licenses/google-desktop/LICENSE
}