Updated tolmach-1.1.0.recipe with the newest version

This commit is contained in:
Vale Tolpegin
2014-12-22 17:14:51 +00:00
parent d067467ad5
commit a75d8dde63

View File

@@ -7,48 +7,50 @@ mainly is a real BeOS program.
COPYRIGHT="1999 Ivan V. Murasko" COPYRIGHT="1999 Ivan V. Murasko"
LICENSE="GNU GPL v2" LICENSE="GNU GPL v2"
HOMEPAGE="https://gitorious.org/desknotes/tolmach" HOMEPAGE="https://gitorious.org/desknotes/tolmach"
SRC_URI="git+https://gitorious.org/desknotes/tolmach.git#dcddbac" SRC_URI="git+http://github.com/haikuarchives/tolmach.git#5a67e9d38292d5dd482e116e8ee7aa605dee5398"
REVISION="1" REVISION="1"
ARCHITECTURES="x86_gcc2 x86 ?x86_64" ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES=" PROVIDES="
tolmach = $portVersion tolmach = $portVersion
app:Tolmach = $portVersion app:Tolmach = $portVersion
lib:libfSub lib:libfSub
" "
REQUIRES="
haiku
"
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku_devel haiku_devel
" "
BUILD_PREREQUIRES=" BUILD_PREREQUIRES="
makefile_engine makefile_engine
cmd:gcc cmd:gcc
cmd:make cmd:make
cmd:mkdepend cmd:mkdepend
" "
PATCHES="tolmach-1.1.0.patch"
USER_SETTINGS_FILES=" USER_SETTINGS_FILES="
settings/Tolmach_Preferences directory" settings/Tolmach_Preferences directory"
BUILD() BUILD()
{ {
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY` make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
} }
INSTALL() INSTALL()
{ {
architecture=`echo $buildArchitecture | sed 's/_/-/g'` architecture=`echo $buildArchitecture | sed 's/_/-/g'`
mkdir -p $appsDir/Tolmach $dataDir/Tolmach mkdir -p $appsDir/Tolmach $dataDir/Tolmach
cd objects.$architecture-release cd objects.$architecture-release
cp Tolmach $appsDir/Tolmach cp Tolmach $appsDir/Tolmach
addAppDeskbarSymlink $appsDir/Tolmach/Tolmach addAppDeskbarSymlink $appsDir/Tolmach/Tolmach
cd ../Dictionaries cd ../Dictionaries
cp *.pgb $dataDir/Tolmach cp *.pgb $dataDir/Tolmach
} }