27 lines
1,005 B
Bash
27 lines
1,005 B
Bash
# Template file for 'playonlinux'
|
|
pkgname=playonlinux
|
|
version=4.3.3
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="$pkgname"
|
|
depends="icoutils netcat ImageMagick xterm wxPython cabextract unzip glxinfo
|
|
gnupg xdg-user-dirs libXmu wget p7zip curl jq"
|
|
short_desc="GUI for managing Windows programs under linux"
|
|
maintainer="Helmut Pozimski <helmut@pozimski.eu>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://www.playonlinux.com"
|
|
distfiles="http://www.playonlinux.com/script_files/PlayOnLinux/${version/.0/}/PlayOnLinux_${version/.0/}.tar.gz"
|
|
checksum=534d7cfb80c547447908556621f362dddd834be3955e3a8de1221ea4f88efd84
|
|
|
|
do_install() {
|
|
vmkdir usr/share/$pkgname
|
|
vmkdir usr/bin
|
|
cp -r * $DESTDIR/usr/share/$pkgname
|
|
|
|
echo "#!/bin/bash" > $DESTDIR/usr/bin/$pkgname
|
|
echo "/usr/share/$pkgname/$pkgname \"\$@\"" >> $DESTDIR/usr/bin/$pkgname
|
|
chmod +x $DESTDIR/usr/bin/$pkgname
|
|
|
|
vinstall etc/PlayOnLinux.desktop 644 usr/share/applications playonlinux.desktop
|
|
sed -i "s/ %F//g" $DESTDIR/usr/share/applications/playonlinux.desktop
|
|
}
|