mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
SUMMARY="A file management program similar to Windows Explorer"
|
|
DESCRIPTION="The goal for Seeker is to provide an alternate means of file \
|
|
management for BeOS, providing easy interaction with Tracker and Terminal \
|
|
and allowing the user to work. It's currently quite useful as it is, and \
|
|
more features are planned for the future."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Seeker"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="DarkWyrm"
|
|
SRC_URI="https://github.com/HaikuArchives/Seeker/archive/09b3516208b34aee6fded536100f79fcba76e9dd.zip"
|
|
CHECKSUM_SHA256="59a4e2cdca7adc5b83291eff8766a616fc257ef9c4e44255c2a0a13e1f94a159"
|
|
SOURCE_DIR="Seeker-09b3516208b34aee6fded536100f79fcba76e9dd"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
seeker = $portVersion
|
|
app:Seeker = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
lib:libsanta
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libsanta
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:mkdepend
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
local packageName="${portName}-$portFullVersion"
|
|
local packageLinksDir=$(dirname $portPackageLinksDir)
|
|
local libsantaDir="$packageLinksDir/${packageName}/devel~libsanta/$relativeIncludeDir/santa"
|
|
make OBJ_DIR=objects LOCAL_INCLUDE_PATHS=$libsantaDir $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a src/objects/Seeker $appsDir
|
|
|
|
addAppDeskbarSymlink $appsDir/Seeker
|
|
}
|