1SUMMARY="A Tracker add-on to get the path to a file quick and easy"
2DESCRIPTION="
3This Tracker add-on allows you to get the path to one or more files, \
4in different ways:
5Holding SHIFT copies just the file name, and holding CTRL \
6prints just one file name/path per line."
7HOMEPAGE="https://github.com/HaikuArchives/CopyNameToClipboard"
8COPYRIGHT="2000 Werner Freytag
9	2012 Humdinger"
10LICENSE="MIT"
11REVISION="3"
12srcGitRev="1da1d52429db53f15c3debf817e982d9ce6346b4"
13SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
14CHECKSUM_SHA256="0da82ec16782e98a1d3ba3016cd0de29aded11213ed2a77b939c085693372a98"
15SOURCE_DIR="CopyNameToClipboard-$srcGitRev"
16
17ARCHITECTURES="all"
18
19PROVIDES="
20	copynametoclipboard = $portVersion
21	app:CopyNameToClipboard = $portVersion
22	"
23REQUIRES="
24	haiku
25	"
26
27BUILD_REQUIRES="
28	haiku_devel
29	"
30BUILD_PREREQUIRES="
31	makefile_engine
32	cmd:gcc
33	"
34
35BUILD()
36{
37	make $jobArgs
38}
39
40INSTALL()
41{
42	make install INSTALL_DIR=$addOnsDir/Tracker
43}
44