blob: e42575c70e519f6f90bd9ffff0732d7881c21613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer:
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
pkgname=boxedwine
pkgver=21.0.1
pkgrel=2
pkgdesc="An emulator that runs 16-bit and 32-bit Windows applications"
arch=('x86_64')
url="https://www.boxedwine.org"
license=('GPL2')
depends=('minizip' 'openssl' 'poco' 'sdl2')
makedepends=('apache' 'apr-util' 'cmake' 'glu' 'libmysqlclient' 'postgresql')
source=("$pkgname-$pkgver.tar.gz::https://github.com/danoon2/Boxedwine/archive/refs/tags/v$pkgver.tar.gz"
"$pkgname.desktop")
sha256sums=('d8b9402658f71225913f0b8de1ecfcda8de3848b08cf3d0741fff80aa2ce8235'
'c9686d8694796b110bfa2876684ef1a42e657fd12781c7180e893328c5b7d79c')
build() {
cd Boxedwine-$pkgver
pushd project/linux
sh build.sh
popd
}
package() {
cd Boxedwine-$pkgver
install -Dm755 "project/linux/bin/$pkgname" -t "$pkgdir/usr/bin"
install -Dm644 "$srcdir/$pkgname.desktop" -t "$pkgdir/usr/share/applications"
}
|