mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Add new clipdinger-0.4 recipe.
This commit is contained in:
68
haiku-apps/clipdinger/clipdinger-0.4.recipe
Normal file
68
haiku-apps/clipdinger/clipdinger-0.4.recipe
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
SUMMARY="A tool to manage a history of the system clipboard"
|
||||||
|
DESCRIPTION="Clipdinger solves the problem that you often have to paste some \
|
||||||
|
text you've just recently copied to the clipboard, but which has been \
|
||||||
|
replaced by something you've copied more recently... It also saves the \
|
||||||
|
history so it'll appear just as you left it on the last shutdown.
|
||||||
|
|
||||||
|
Clipdinger provides a history of your recent clippings and lets you create \
|
||||||
|
your own favorites. It should be started automatically on every boot-up by \
|
||||||
|
creating a link to it at ~/config/settings/boot/launch/.
|
||||||
|
|
||||||
|
You access the history by pressing SHIFT + ALT + V, which opens the \
|
||||||
|
Clipdinger window where you can select an entry with the cursor keys and \
|
||||||
|
paste it by hitting RETURN. ESCAPE minimizes the window without pasting.
|
||||||
|
|
||||||
|
Please see the ReadMe available from the Help menu for more details."
|
||||||
|
HOMEPAGE="http://humdingerb.github.io/clipdinger/"
|
||||||
|
COPYRIGHT="2015 Humdinger"
|
||||||
|
LICENSE="MIT"
|
||||||
|
REVISION="1"
|
||||||
|
SOURCE_URI="git://github.com/humdingerb/clipdinger.git#4cfd6f655a46cf1c1456494ead04b5fb0e3cd531"
|
||||||
|
|
||||||
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||||
|
|
||||||
|
PROVIDES="
|
||||||
|
clipdinger = $portVersion
|
||||||
|
app:Clipdinger = $portVersion
|
||||||
|
add_on:ClipdingerInputDevice = $portVersion
|
||||||
|
"
|
||||||
|
REQUIRES="
|
||||||
|
haiku
|
||||||
|
"
|
||||||
|
BUILD_REQUIRES="
|
||||||
|
haiku_devel
|
||||||
|
"
|
||||||
|
BUILD_PREREQUIRES="
|
||||||
|
makefile_engine
|
||||||
|
cmd:g++
|
||||||
|
cmd:make
|
||||||
|
"
|
||||||
|
|
||||||
|
USER_SETTINGS_FILES="
|
||||||
|
settings/Clipdinger directory
|
||||||
|
"
|
||||||
|
|
||||||
|
BUILD()
|
||||||
|
{
|
||||||
|
make $jobArgs OBJ_DIR=objects
|
||||||
|
make bindcatalogs OBJ_DIR=objects
|
||||||
|
|
||||||
|
cd input_device
|
||||||
|
make $jobArgs OBJ_DIR=objects
|
||||||
|
}
|
||||||
|
|
||||||
|
INSTALL()
|
||||||
|
{
|
||||||
|
clipdingerDir=$appsDir/Clipdinger
|
||||||
|
|
||||||
|
mkdir -p $clipdingerDir
|
||||||
|
cp -af objects/Clipdinger $clipdingerDir
|
||||||
|
cp -af ReadMe.html $clipdingerDir
|
||||||
|
cp -r images $clipdingerDir
|
||||||
|
|
||||||
|
mkdir -p $addOnsDir/input_server/devices
|
||||||
|
cp -af input_device/objects/ClipdingerInputDevice \
|
||||||
|
$addOnsDir/input_server/devices
|
||||||
|
|
||||||
|
addAppDeskbarSymlink $clipdingerDir/Clipdinger
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user