mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-14 05:49:04 +08:00
22 lines
628 B
Bash
22 lines
628 B
Bash
pkgname=wine_gecko
|
|
pkgver=2.44
|
|
pkgrel=1
|
|
pkgdesc="Wine's built-in replacement for Microsoft's Internet Explorer"
|
|
arch=('x86_64')
|
|
url="http://wiki.winehq.org/Gecko"
|
|
license=('MPL')
|
|
depends=('wine>=1.9.3')
|
|
source=(http://dl.winehq.org/wine/wine-gecko/${pkgver}/wine_gecko-${pkgver}-x86{,_64}.msi)
|
|
md5sums=('f6ff2bb5dddc144726bd9a955fb16649'
|
|
'59e7a37dcdc87f5e4f030bfafbb1c0d6')
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
|
|
install -d -m755 "${pkgdir}/usr/share/wine/gecko/"
|
|
|
|
install -D -m644 "${pkgname}-${pkgver}-x86.msi" \
|
|
"${pkgname}-${pkgver}-x86_64.msi" \
|
|
"${pkgdir}/usr/share/wine/gecko/"
|
|
}
|