mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
43 lines
786 B
Bash
43 lines
786 B
Bash
SUMMARY="Free image browser and viewer"
|
|
DESCRIPTION="Peek is a free image browser and viewer with the aim of of \
|
|
being small, fast, efficient, very functional and intuitive."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Peek"
|
|
COPYRIGHT="2001 Durand John Miller"
|
|
LICENSE="BSD (3-clause)"
|
|
REVISION="1"
|
|
SOURCE_URI="git+https://github.com/HaikuArchives/Peek.git#0ec2275"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
peek = $portVersion
|
|
app:Peek = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:g++
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd source
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/Peek
|
|
cp source/objects/Peek $appsDir/Peek/Peek
|
|
cp -r languages $appsDir/Peek/
|
|
addAppDeskbarSymlink $appsDir/Peek/Peek
|
|
}
|