mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-11 00:24:38 +08:00
27 lines
674 B
Bash
27 lines
674 B
Bash
pkgname=q4wine
|
|
pkgver=1.3.10
|
|
pkgrel=1
|
|
pkgdesc="Qt GUI for Wine"
|
|
arch=("x86_64")
|
|
url="http://sourceforge.net/projects/${pkgname}/"
|
|
license=("GPL3")
|
|
depends=("qt5-base" "qt5-svg" "wine" "sqlite3" "which" "icoutils" "fuseiso")
|
|
makedepends=("cmake" "qt5-tools")
|
|
optdepends=("winetricks")
|
|
options=('!emptydirs')
|
|
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2")
|
|
md5sums=('583b920c3298bb3976e2db1d22f46c2a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver/_/-}
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver/_/-}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|