mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-30 03:58:51 +02:00
47 lines
904 B
Plaintext
47 lines
904 B
Plaintext
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 control \
|
|
prints just one file name/path per line.
|
|
"
|
|
HOMEPAGE="https://github.com/HaikuArchives/CopyNameToClipboard"
|
|
SRC_URI="git://github.com/HaikuArchives/CopyNameToClipboard.git#d0d1c757a156981232aec44e0f88a2f35cfe0b96"
|
|
REVISION="1"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="
|
|
2000 Werner Freytag
|
|
2012 Humdinger
|
|
"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
copynametoclipboard = $portVersion
|
|
app:copynametoclipboard = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:mkdepend
|
|
cmd:g++
|
|
cmd:xres
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd trunk
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd trunk
|
|
make install INSTALL_DIR=$addOnsDir/Tracker
|
|
}
|