mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
SUMMARY="Free music files for OpenTTD"
|
|
DESCRIPTION="OpenTTD is an open source simulation game based upon the popular Microprose \
|
|
game \"Transport Tycoon Deluxe\", written by Chris Sawyer. It attempts to \
|
|
mimic the original game as closely as possible while extending it with new \
|
|
features.
|
|
|
|
This package provides free to use music files. You can use them if you don't \
|
|
have the files from the original Transport Tycoon Deluxe game."
|
|
HOMEPAGE="http://www.openttd.org"
|
|
COPYRIGHT="2005-2013 OpenTTD Team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="https://cdn.openttd.org/openmsx-releases/$portVersion/openmsx-$portVersion-all.zip#noarchive"
|
|
CHECKSUM_SHA256="5a4277a2e62d87f2952ea5020dc20fb2f6ffafdccf9913fbf35ad45ee30ec762"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
openttd_msx = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:unzip
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
unzip -o openmsx-$portVersion-all.zip
|
|
rm openmsx-$portVersion-all.zip
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $dataDir/openttd/baseset
|
|
cp openmsx-$portVersion.tar $dataDir/openttd/baseset/
|
|
}
|