summaryrefslogtreecommitdiff
path: root/community/launchy/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-03-16 10:34:49 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-03-16 10:34:49 +0100
commitf24ad15758f8eebcc46cb0c210f888491869d3f0 (patch)
tree85c74dd33e056502de7a306161d28f5b15b274c2 /community/launchy/PKGBUILD
parent5f4568c7f7ba204bc047d2c74a5721f23024b339 (diff)
parent636ce8849a9c82c1787c2919ffcfe6685cb799d3 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/chmsee/PKGBUILD community/darkstat/PKGBUILD community/dbmail/PKGBUILD community/dvdisaster/PKGBUILD community/epic4/PKGBUILD community/fb-client/PKGBUILD community/fcrackzip/PKGBUILD community/fdupes/PKGBUILD community/flobopuyo/PKGBUILD community/intel-tbb/PKGBUILD community/openbsd-netcat/PKGBUILD community/sunpinyin/PKGBUILD community/tinc/PKGBUILD community/uudeview/PKGBUILD community/zathura/PKGBUILD core/libedit/PKGBUILD core/mkinitcpio-busybox/PKGBUILD core/openssl/PKGBUILD core/util-linux/PKGBUILD extra/lua/PKGBUILD gnome-unstable/pidgin/PKGBUILD testing/openssl/PKGBUILD testing/sudo/PKGBUILD testing/udev/PKGBUILD testing/util-linux/PKGBUILD
Diffstat (limited to 'community/launchy/PKGBUILD')
-rw-r--r--community/launchy/PKGBUILD23
1 files changed, 15 insertions, 8 deletions
diff --git a/community/launchy/PKGBUILD b/community/launchy/PKGBUILD
index 05848ddd5..cb13e6510 100644
--- a/community/launchy/PKGBUILD
+++ b/community/launchy/PKGBUILD
@@ -3,23 +3,30 @@
pkgname=launchy
pkgver=2.5
-pkgrel=1
+pkgrel=2
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' 'mips64el')
url="http://www.launchy.net/"
license=('GPL')
depends=('qt' 'xdg-utils')
makedepends=('gcc' 'boost')
-source=("http://downloads.sourceforge.net/launchy/launchy-${pkgver}.tar.gz")
-sha256sums=('93ec471423b77973a2118eaec64c7a1c05ce37b5bff41760336ebd14fc819500')
+source=("http://downloads.sourceforge.net/launchy/launchy-${pkgver}.tar.gz"
+ fix-linking.patch)
+sha256sums=('93ec471423b77973a2118eaec64c7a1c05ce37b5bff41760336ebd14fc819500'
+ 'e1b9203ef5071d401ab6276a38270b651488c4cc481a60a98d2c17fb38114e7d')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- qmake -r Launchy.pro || return 1
- make || return 1
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ # fix linking against libX11
+ patch -Np1 -i ../fix-linking.patch
+
+ qmake -r Launchy.pro
+ make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make INSTALL_ROOT=${pkgdir} install
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ make INSTALL_ROOT=${pkgdir} install
}