desktop/q4wine/PKGBUILD

29 lines
842 B
Bash
Raw Normal View History

#
# Apps Packages for Chakra, part of chakra-project.org
# from ccr, contributor willingmagic
pkgname=q4wine
2011-06-14 10:17:09 +08:00
pkgver=0.121
pkgrel=1
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")
options=('!emptydirs' 'force')
categories=('system')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2
q4wine.desktop)
2011-06-14 10:17:09 +08:00
md5sums=('2de5de62f57ba6b26247198df339d81a'
'0518a54413a1ee76f7d59b378f00a572')
build() {
cd ${srcdir}/${pkgname}-${pkgver/_/-}
cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_WINETRIKS=ON .
make
make DESTDIR=${pkgdir} install
install -D ${startdir}/${pkgname}.desktop ${pkgdir}/usr/share/applications/${pkgname}.desktop
}