mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
20 lines
677 B
Bash
20 lines
677 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: Andrew Burkett <burkett.andrew@gmail.com>
|
|
pkgname=launchy
|
|
pkgver=2.1.2
|
|
pkgrel=1
|
|
pkgdesc="Launchy indexes the programs in your start menu and can launch your documents, project files, folders, and bookmarks with just a few keystrokes!"
|
|
arch=('i686 x86_64')
|
|
url="http://www.launchy.net/"
|
|
license=('GPL')
|
|
depends=('qt' 'xdg-utils')
|
|
makedepends=('gcc' 'boost')
|
|
source=("http://downloads.sourceforge.net/launchy/launchy-$pkgver.tar.gz")
|
|
md5sums=('235a5ecba34d96c44fc4e69d74fc5817')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
sed -i 's/qmake-qt4/qmake/g' makefile
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|