Created
September 19, 2017 21:41
-
-
Save WhyNotHugo/55bc2fb56008c8a9fd20e7b113d2e911 to your computer and use it in GitHub Desktop.
gog-thimbleweedpark
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Claudia Pellegrino <aur ät cpellegrino.de> | |
# Contributor: | |
pkgname=gog-thimbleweedpark | |
pkgver=1.0.938.14433 | |
pkgrel=1 | |
pkgdesc='Thimbleweed Park' | |
arch=('x86_64') | |
url='https://www.gog.com/game/thimbleweed_park' | |
license=('custom') | |
options=('libtool' 'staticlibs' '!strip') | |
depends=('libxdmcp' 'libxau' 'gcc-libs-multilib' 'glibc' 'libglvnd' 'libx11' | |
'libxcb' 'libxext') | |
source=( | |
"thimbleweed_park_en_${pkgver//./_}.sh::gogdownloader://thimbleweed_park/en3installer0" | |
'thimbleweedpark.shim' | |
) | |
sha512sums=( | |
'2db274b477307efaecd4bbc2e1916fb833b12b9f3615cce217dea3aa4995576dd1fdd26ea012f2ff12f959743b1176e04fa5d1508699f0f42bd53a97f5119125' | |
'e769cb50a03620f41d864c296224e3a3c7bce93613b714590caabb8cd726ccef5f1a08a664a6018ef7fd74a836340ae6165cb0801e86424639adba3513d96d18' | |
) | |
DLAGENTS+=('gogdownloader::/usr/bin/lgogdownloader --download-file=%u -o %o') | |
PKGEXT=.pkg.tar | |
_gamename='thimbleweedpark' | |
package() { | |
msg2 'Packaging the license' | |
install -D -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" \ | |
"${srcdir}/data/noarch/docs/End User License Agreement.txt" | |
msg2 'Packaging game data' | |
mkdir -p "${pkgdir}/opt/gog/${_gamename}" | |
cp -r --preserve=mode -t "${pkgdir}/opt/gog/${_gamename}" \ | |
"${srcdir}/data/noarch"/* | |
msg2 'Packaging game icon' | |
install -D -m 644 -T \ | |
"${srcdir}/data/noarch/support/icon.png" \ | |
"${pkgdir}/usr/share/pixmaps/${pkgname}.png" | |
msg2 'Packaging executable shim' | |
install -D -m 755 -T \ | |
"${srcdir}/${_gamename}.shim" \ | |
"${pkgdir}/usr/bin/${_gamename}" | |
msg2 'Packaging documentation' | |
install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \ | |
"${srcdir}/data/noarch/docs"/* | |
install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}/support" \ | |
"${srcdir}/data/noarch/support/support_notice.txt" | |
msg2 "Note that this version (${pkgver}) supersedes any 2.x release." | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment