blob: c547758d71582e1321f4f4f7aa9751559492dcbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Original maintainer: D. Can Celasun <dcelasun[at]gmail[dot]com>
# TODO: add license
pkgname=the-binding-of-isaac
pkgver=20121219
pkgrel=2
pkgdesc="A randomly generated action RPG shooter with heavy Rogue-like elements."
url="http://www.bindingofisaac.com"
license=('custom: "commercial"')
arch=('i686' 'x86_64')
_gamepkg="the_binding_of_isaac_wrath_of_the_lamb-linux.tar.gz"
depends_x86_64=('lib32-sqlite3' 'lib32-libidn' 'lib32-libxt' 'lib32-libxxf86vm' 'lib32-gtk2' 'lib32-curl')
optdepends_x86_64=('lib32-libvdpau: For flash player hardware acceleration')
depends_i686=('sqlite3' 'libidn' 'libxt' 'libxxf86vm' 'gtk2' 'nss' 'curl')
optdepends_i686=('libvdpau: For flash player hardware acceleration')
options=(!strip)
# You can download the Humble Indie Bundle file manually, or you can configure
# DLAGENTS in makepkg.conf to auto-download.
DLAGENTS+=('hib::/usr/bin/echo "Could not find %u. Download manually to \"$(pwd)\" or setup hib:// DLAGENT in /etc/makepkg.conf."; exit 1')
# Disable compression of the package
PKGEXT='.pkg.tar'
source=("${_gamepkg}"::"hib://${_gamepkg}"
"isaac.desktop" "isaac.png")
md5sums=('f56410cdbed698cb984745e898585087'
'bd7ab23bafd88705b42c0c328f8f6717'
'bbc59b1fabb6036e4db450811bd3ab39')
package(){
# create Launcher
install -d "${pkgdir}/usr/bin/"
mv "${srcdir}/Binding of Isaac/The Binding of Isaac + Wrath of the Lamb" "${srcdir}/isaac"
install -D -m755 "${srcdir}/isaac" "${pkgdir}/usr/bin/isaac"
# Install Desktop File and Icon
install -D -m644 "${srcdir}/isaac.desktop" \
"${pkgdir}/usr/share/applications/isaac.desktop"
install -D -m644 "${srcdir}/isaac.png" \
"${pkgdir}/usr/share/icons/isaac.png"
}
|