mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 21:18:51 +02:00
55 lines
978 B
Plaintext
55 lines
978 B
Plaintext
SUMMARY="An app to clean all temporary and unwanted files"
|
|
DESCRIPTION="
|
|
It cleans your hard disk of all unwanted files such as left-over temporary \
|
|
files, cache files of internet sessions, logs, history files and the like. It \
|
|
works with easy to write text files that include information about where the \
|
|
files to delete are.
|
|
"
|
|
HOMEPAGE="https://sites.google.com/site/appfilwip/home"
|
|
SRC_URI="git://github.com/HaikuArchives/FilWip.git#af3bcbe"
|
|
REVISION="4"
|
|
|
|
LICENSE="SPL"
|
|
COPYRIGHT="2002 Ramshankar"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
|
|
PROVIDES="
|
|
filwip = $portVersion
|
|
app:FilWip = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++
|
|
cmd:xres
|
|
cmd:make
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
makefile_engine
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/FilWip_settings
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs -C Source
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/FilWip
|
|
|
|
cp -rf Plugins $appsDir/FilWip/Plugins
|
|
cp FilWip $appsDir/FilWip/FilWip
|
|
|
|
addAppDeskbarSymlink $appsDir/FilWip/FilWip
|
|
}
|