mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
45 lines
949 B
Bash
45 lines
949 B
Bash
SUMMARY="A picture browser based on the translators"
|
|
DESCRIPTION="
|
|
Butterfly is a picture browser based on the translators for displaying
|
|
bitmap images. It was inspired by Sea, a DOS picture browser.
|
|
Its aim is to allow easy and fast browsing of an important number of pictures.
|
|
"
|
|
HOMEPAGE="http://oxben.free.fr/butterfly/Butterfly.html"
|
|
SOURCE_URI="git://github.com/HaikuArchives/Butterfly#45a5b62"
|
|
COPYRIGHT="2006 Thomas Thery"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
butterfly$secondaryArchSuffix = $portVersion
|
|
app:Butterfly = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd source
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp source/objects/Butterfly $appsDir
|
|
|
|
addAppDeskbarSymlink $appsDir/Butterfly
|
|
}
|