mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* arm_none_eabi_newlib Removed e-mail from COPYRIGHT. Re-ordered blocks. Added REQUIRES and BUILD_REQUIRES. * avrdude Removed e-mail from COPYRIGHT. Re-ordered blocks. * bafx Removed e-mail from COPYRIGHT. Re-ordered blocks. Added REQUIRES. * becasso Removed e-mail from COPYRIGHT. Re-ordered blocks. Added REQUIRES. * becjk Removed e-mail from COPYRIGHT. Re-ordered blocks. * bmake Removed e-mail from COPYRIGHT. Re-ordered blocks. * cmake_haiku Removed e-mail from COPYRIGHT. Re-ordered blocks. * coveredcalc Removed e-mail from COPYRIGHT. Re-ordered blocks. * curl Removed e-mail from COPYRIGHT. Re-ordered blocks. * dejavu Removed e-mail from COPYRIGHT. Re-ordered blocks. * dfu-programmer Removed e-mail from COPYRIGHT. Re-ordered blocks. * exiv2 Removed e-mail from COPYRIGHT. Re-ordered blocks. * festival Removed e-mail from COPYRIGHT. Re-ordered blocks. * fxload Removed e-mail from COPYRIGHT. Re-ordered blocks. * geos Removed e-mail from COPYRIGHT. Re-ordered blocks. * gsl Removed e-mail from COPYRIGHT. Re-ordered blocks. * lato_fonts Removed e-mail from COPYRIGHT. Re-ordered blocks. * libabw Removed e-mail from COPYRIGHT. Re-ordered blocks. * libcaca Removed e-mail from COPYRIGHT. Re-ordered blocks. * libcdr Removed e-mail from COPYRIGHT. Re-ordered blocks. * libdv Removed e-mail from COPYRIGHT. Re-ordered blocks. * libebook Removed e-mail from COPYRIGHT. Re-ordered blocks. * libetonyek Removed e-mail from COPYRIGHT. Re-ordered blocks.
43 lines
846 B
Bash
43 lines
846 B
Bash
SUMMARY="A file manager for Haiku"
|
|
DESCRIPTION="BAfx is a file manager for BeOS/Haiku. It uses a single window \
|
|
with two panes for source and destination folder.
|
|
The file manager is still in early stages of development. A built-in text and \
|
|
image viewer are planned for future releases."
|
|
HOMEPAGE="https://github.com/marbocub/BAfx"
|
|
COPYRIGHT="2012 marbocub"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="git+https://github.com/marbocub/BAfx#ebd3db8a22"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
bafx = $portVersion
|
|
app:BAfx = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make OBJ_DIR=objects \
|
|
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/BAfx $appsDir
|
|
addAppDeskbarSymlink $appsDir/BAfx
|
|
}
|