-
-
Save AlephAlpha/45c63b48672eb04c47ad38d5207522d6 to your computer and use it in GitHub Desktop.
golly-4.0 PKGBUILD
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: Kyle Sferrazza <[email protected]> | |
# Contributor: Maks Verver <[email protected]> | |
# Contributor: p2k <[email protected]> | |
# Contributor: nokangaroo <[email protected]> | |
pkgname=golly | |
pkgver=4.0 | |
pkgrel=1 | |
pkgdesc="A simulator for Conway's Game of Life and other cellular automata" | |
arch=('i686' 'x86_64') | |
url="http://golly.sourceforge.net/" | |
license=('GPL') | |
depends=('wxgtk') | |
makedepends=('perl' 'python>=3.3.0') | |
optdepends=('perl: for Perl scripting support' | |
'python>=3.3.0: for Python scripting support') | |
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}-src.tar.gz" | |
"golly.desktop") | |
md5sums=('1f8713687745b542473b4218ed1cf05a' | |
'bf54bb7268dcba539162ee106d2a5063') | |
sha1sums=('f0641c36fcb6406468f7b2fa06e0c2582c32e3c1' | |
'e8fefda400ca3094d7457e8ad45d2314e910ca85') | |
build() { | |
# Hacky way to get location of libperl.so used by perl interpreter | |
PERL_SHLIB=$(ldd "$(which perl)" | grep 'libperl\.so' | awk '{print $3}') | |
test -x "${PERL_SHLIB}" || (echo 'libperl.so not found' && false) | |
cd "${srcdir}/${pkgname}-${pkgver}-src/gui-wx/" | |
cat >local-gtk.mk <<EOF | |
GOLLYDIR=/usr/share/golly | |
CXXFLAGS=${CXXFLAGS} | |
LDFLAGS=${LDFLAGS} | |
ENABLE_PERL=1 | |
EOF | |
make -f makefile-gtk PERL_SHLIB=${PERL_SHLIB} | |
} | |
package() { | |
cd "${srcdir}/${pkgname}-${pkgver}-src/" | |
install -d "${pkgdir}"/usr/bin | |
install bgolly golly "${pkgdir}"/usr/bin/ | |
install -d "${pkgdir}"/usr/share/doc/golly | |
install -m644 docs/License.html docs/ReadMe.html "${pkgdir}"/usr/share/doc/golly/ | |
find Help Patterns Rules Scripts -type f | while read file; do | |
install -D -m644 "${file}" "${pkgdir}/usr/share/golly/${file}" | |
done | |
install -D -m644 "${srcdir}/${pkgname}.desktop" \ | |
"${pkgdir}/usr/share/applications/${pkgname}.desktop" | |
install -D -m644 gui-wx/icons/appicon.xpm \ | |
"${pkgdir}/usr/share/pixmaps/${pkgname}.xpm" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment