mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:07:25 +08:00
21 lines
625 B
Bash
21 lines
625 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=winetricks
|
|
pkgver=20111115
|
|
pkgrel=1
|
|
pkgdesc='Script to install various redistributable runtime libraries in Wine.'
|
|
url='http://wiki.winehq.org/winetricks'
|
|
license=('LGPL')
|
|
arch=('any')
|
|
depends=('wine' 'cabextract' 'unzip' 'xorg-utils')
|
|
optdepends=('kdebase-kdialog: graphical interface.')
|
|
source=($pkgname-$pkgver::http://www.kegel.com/wine/$pkgname)
|
|
md5sums=('fc4a826131ee0a134fe3d821b883f5ea')
|
|
|
|
package() {
|
|
install -Dm755 $srcdir/$pkgname-$pkgver $pkgdir/usr/bin/$pkgname
|
|
}
|