32 lines
1 KiB
Bash
32 lines
1 KiB
Bash
# Template file for 'frogatto'
|
|
pkgname=frogatto
|
|
version=1.3.20151106
|
|
revision=1
|
|
_gitrev=dc45d685fa78c362cc6a6f8444f3fe549ada4aed
|
|
wrksrc=${pkgname}-${_gitrev}
|
|
depends="anura"
|
|
short_desc="Action adventure game, starring a certain quixotic frog"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="Custom"
|
|
repository="nonfree"
|
|
homepage="http://www.frogatto.com/"
|
|
distfiles="https://github.com/frogatto/frogatto/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=e1695728271c0f8ab6eba43c4571499697278ef822f5535c01f68f8ee7b782e5
|
|
noarch=yes
|
|
|
|
do_install() {
|
|
local f
|
|
vlicense LICENSE
|
|
|
|
# Startup script, desktop and icon
|
|
vbin ${FILESDIR}/frogatto.sh frogatto
|
|
vinstall ${FILESDIR}/frogatto.desktop 644 usr/share/applications
|
|
vinstall images/window-icon.png 644 usr/share/pixmaps frogatto.png
|
|
|
|
vmkdir usr/share/anura/modules/frogatto
|
|
# Remove unused cruft
|
|
rm -rf music/Unused sounds/unused images/os/mac
|
|
# Shared data
|
|
cp -a *.cfg data images locale music sounds \
|
|
${DESTDIR}/usr/share/anura/modules/frogatto
|
|
}
|