29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
# Template file for 'playonlinux'
|
|
pkgname=playonlinux
|
|
version=4.2.10
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="$pkgname"
|
|
depends="icoutils netcat ImageMagick xterm wxPython cabextract unzip glxinfo
|
|
gnupg xdg-user-dirs libXmu wget p7zip curl"
|
|
short_desc="GUI for managing Windows programs under linux"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="http://www.playonlinux.com"
|
|
distfiles="http://www.playonlinux.com/script_files/PlayOnLinux/${version/.0/}/PlayOnLinux_${version/.0/}.tar.gz"
|
|
checksum=f524905912ae2b17c8544968a8554d635f8fc4cd3b220c0ae15c49d51f244973
|
|
[ "${CROSS_BUILD}" ] && broken="Dependency wxPython can't be cross compiled"
|
|
|
|
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
|
|
}
|