mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
SUMMARY="A file management program similar to Windows Explorer"
|
|
DESCRIPTION="The goal for Seeker is to provide an alternate means of file \
|
|
management, providing easy interaction with Tracker and Terminal. It's \
|
|
currently quite useful as it is, and more features are planned for the future."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Seeker"
|
|
COPYRIGHT="DarkWyrm"
|
|
LICENSE="MIT"
|
|
REVISION="7"
|
|
srcGitRev="d88e5821185eab416590374f2de290a3c6fdc09f"
|
|
SOURCE_URI="https://github.com/HaikuArchives/Seeker/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="9d200cf9e48eecdd838ec6a2c83fc4d45ef362b73cbddfcb6afcac1ae42c27e1"
|
|
SOURCE_DIR="Seeker-$srcGitRev"
|
|
|
|
ARCHITECTURES="all ?x86"
|
|
|
|
PROVIDES="
|
|
seeker = $portVersion
|
|
app:Seeker = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libsanta
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libsanta
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:ld
|
|
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
|
|
}
|