57267c9fec
Since now X11 packages are official, it is necessary to rebuild them all to make sure that everything is okay.
27 lines
1.0 KiB
Bash
27 lines
1.0 KiB
Bash
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
|
|
|
|
TERMUX_PKG_HOMEPAGE=http://powdertoy.co.uk/
|
|
TERMUX_PKG_DESCRIPTION="The Powder Toy is a free physics sandbox game"
|
|
TERMUX_PKG_VERSION=93.3
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=https://github.com/ThePowderToy/The-Powder-Toy/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=6c5f5914e4ae0ac8500c7203ec69517a2fd4380dece6b33247ed719aa12e074e
|
|
TERMUX_PKG_DEPENDS="fftw, libbz2, libc++, liblua51, libsdl, libx11"
|
|
TERMUX_PKG_FOLDERNAME=The-Powder-Toy-${TERMUX_PKG_VERSION}
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make()
|
|
{
|
|
export CFLAGS="${CFLAGS} -I${TERMUX_PREFIX}/include"
|
|
export CXXFLAGS="${CFLAGS}"
|
|
export LDFLAGS="-L${TERMUX_PREFIX}/lib"
|
|
scons -j4 --lin --64bit --no-sse
|
|
}
|
|
|
|
termux_step_make_install()
|
|
{
|
|
install -Dm755 "${TERMUX_PKG_SRCDIR}/build/powder64-legacy" "${TERMUX_PREFIX}/bin/the-powder-toy"
|
|
ln -sfr "${TERMUX_PREFIX}/bin/the-powder-toy" "${TERMUX_PREFIX}/bin/powder"
|
|
${TERMUX_ELF_CLEANER} "${TERMUX_PREFIX}/bin/the-powder-toy"
|
|
}
|