summaryrefslogtreecommitdiff
path: root/multilib-testing/q4wine/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'multilib-testing/q4wine/PKGBUILD')
-rw-r--r--multilib-testing/q4wine/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/multilib-testing/q4wine/PKGBUILD b/multilib-testing/q4wine/PKGBUILD
new file mode 100644
index 000000000..6bcafffa1
--- /dev/null
+++ b/multilib-testing/q4wine/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 62112 2012-01-16 01:55:29Z heftig $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Chris Giles <Chris.G.27 (at) Gmail.com>
+
+pkgname=q4wine
+pkgver=0.121
+pkgrel=3
+pkgdesc="A Qt4 GUI for Wine"
+arch=("i686" "x86_64")
+url="http://sourceforge.net/projects/${pkgname}/"
+license=("GPL3")
+depends=("qt" "wine" "sqlite3" "which" "icoutils")
+makedepends=("cmake")
+optdepends=("winetricks" "fuseiso")
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
+md5sums=('2de5de62f57ba6b26247198df339d81a')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver/_/-}
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWITH_WINETRIKS=ON \
+ -DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver/_/-}
+ make DESTDIR=${pkgdir} install
+}