mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
43 lines
856 B
Bash
43 lines
856 B
Bash
SUMMARY="A Tracker add-on to get the path to a file quick and easy"
|
|
DESCRIPTION="
|
|
This Tracker add-on allows you to get the path to one or more files, \
|
|
in different ways:
|
|
Holding SHIFT copies just the file name, and holding CTRL \
|
|
prints just one file name/path per line.
|
|
"
|
|
HOMEPAGE="https://github.com/HaikuArchives/CopyNameToClipboard"
|
|
SOURCE_URI="git://github.com/HaikuArchives/CopyNameToClipboard#1da1d52429db53f15c3debf817e982d9ce6346b4"
|
|
REVISION="2"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="
|
|
2000 Werner Freytag
|
|
2012 Humdinger
|
|
"
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
copynametoclipboard = $portVersion
|
|
app:CopyNameToClipboard = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:mkdepend
|
|
cmd:gcc
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install INSTALL_DIR=$addOnsDir/Tracker
|
|
}
|