mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* gnash Don't start SUMMARY with app name Re-ordered blocks * gophernicus Don't start SUMMARY with app name Re-ordered blocks * harfbuzz Don't start SUMMARY with app name Re-ordered blocks * inconsolata Don't start SUMMARY with app name Re-ordered blocks * indent Don't start SUMMARY with app name Re-ordered blocks Fixed (SECONDARY_)ARCHITECTURES and PROVIDES * inputproto Don't start SUMMARY with app name Improved SUMMARY and DESCRIPTION Re-ordered blocks * jamvm Don't start SUMMARY with app name Removed "DEPEND" Re-ordered blocks * jpeg Don't start SUMMARY with app name Re-ordered blocks * jgmod Don't start SUMMARY with app name Re-ordered blocks * kbproto Don't start SUMMARY with app name Re-ordered blocks * kdiff3 Don't start SUMMARY with app name Re-ordered blocks * libdom Don't start SUMMARY with app name Re-ordered blocks Removed $secondaryArchSuffix as there are no 2nd archs declared * libdvdcss Don't start SUMMARY with app name Re-ordered blocks * libdwarf Don't start SUMMARY with app name Re-ordered blocks * libevent Minor cosmetics Re-ordered blocks
59 lines
1.1 KiB
Bash
59 lines
1.1 KiB
Bash
SUMMARY="A MOD music playing add-on library for Allegro"
|
|
DESCRIPTION="JGMOD is a mod library for MOD musics. It is built on top of \
|
|
Allegro lower level digital sound routines. Currently supports MOD, S3M, XM, \
|
|
Unreal S3M (in UMX extension), and JGM under DJGPP, Mingw32, MSVC, Linux,\
|
|
BeOS and Haiku."
|
|
HOMEPAGE="http://guan.is-a-geek.com/jgmod/jgmod.html"
|
|
COPYRIGHT="1997-2002 Guan Foo Wah"
|
|
LICENSE="JGMOD"
|
|
REVISION="2"
|
|
SOURCE_URI="http://guan.is-a-geek.com/jgmod/jgmod.zip"
|
|
CHECKSUM_SHA256="5d34c446904ddf2c6e3ee2272e6d4a9e6b1b4e59701237c5f4c961999623c77a"
|
|
SOURCE_DIR="jgmod"
|
|
SOURCE_FILENAME="jgmod-$portVersion.zip"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
jgmod = $portVersion
|
|
lib:libjgmod
|
|
"
|
|
REQUIRES="
|
|
lib:liballeg >= 4.4
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
devel:libjgmod
|
|
"
|
|
REQUIRES_devel="
|
|
jgmod == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:liballeg
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:find
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
chmod 777 ./fixbe.sh
|
|
./fixbe.sh
|
|
cd src
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd src
|
|
mkdir -p $libDir $includeDir
|
|
make install CPLIBDEST=$libDir CPINCDEST=$includeDir
|
|
|
|
prepareInstalledDevelLib libjgmod
|
|
packageEntries devel $developDir
|
|
}
|