Filer: actually doesn't build with arch x86

Marked x86 as non-working.
Slightly improved description.
No need to increase the revision for these changes.
Removed filer-1.0.0beta3.recipe as it didn't build anyway and possibly
interferes with building filer-1.0.0, because it's picked up first
when doing a "haikuporter filer".
This commit is contained in:
Humdinger
2016-04-10 17:28:34 +02:00
parent 5136f98d16
commit c86b8e5168
2 changed files with 4 additions and 60 deletions

View File

@@ -3,9 +3,9 @@ DESCRIPTION="The Filer is a powerful, flexible automatic file organizer. It \
is an implementation of the 'Sorting Chute' idea conceived on the Glass \
Elevator mailing list for Haiku.
Filer is an automatic file organizer. It takes the files it's opened with or \
that are dropped on its icon and moves, renames, copies or does all sorts of \
other things with them according to rules created by the user.
Filer takes the files it's opened with or that are dropped on its icon and \
moves, renames, copies or does all sorts of other things with them according \
to rules created by the user.
Filer is accompanied by AutoFiler. Instead of working on a set of files \
provided by the user, it can be started together with Haiku to monitor certain \
@@ -19,7 +19,7 @@ SOURCE_URI="https://github.com/HaikuArchives/Filer/archive/1e452286b24fbf3722ec2
CHECKSUM_SHA256="8dd8bf6cfe2074425fed02e91bdb2854c65f96840e6ef16466f025f76f27f4b8"
SOURCE_DIR="Filer-1e452286b24fbf3722ec2ffb06bc55467b01b0d2"
ARCHITECTURES="x86 x86_gcc2"
ARCHITECTURES="!x86 x86_gcc2"
PROVIDES="
filer = $portVersion

View File

@@ -1,56 +0,0 @@
SUMMARY="An automated file management system"
DESCRIPTION="
The Filer is a powerful, flexible automatic file organizer. It is an \
implementation of the Sorting Chute idea conceived on the Glass Elevator \
mailing list for Haiku. Just drag and drop files onto its icon, use the \
Terminal, or send it files via the Open With menu. It can even automatically \
file items in folders you specify. Simple enough for the novice user, powerful \
enough for developers. It automates file management according to a set of \
rules you determine and is pretty much limited only by your imagination. \
Powerful on its own, it can also be extended by shell scripting.
" # Taken from homepage
HOMEPAGE="http://darkwyrm.beemulated.net/apps/filer.htm"
SOURCE_URI="git://github.com/HaikuArchives/Filer.git#4618b2ae9d7238254860cf3633701dd4f52dad37"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="2008 DarkWyrm"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
filer = $portVersion
app:Filer = $portVersion
"
REQUIRES="
haiku
lib:libsqlite3
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:xres
"
BUILD_REQUIRES="
haiku_devel
devel:libsqlite3
"
BUILD()
{
cd sources/Filer
gcc -lbe -lsqlite3 -ltranslation -o ../FilerApp *.cpp
rc -o Filer.rsrc Filer.rdef
xres -o ../FilerApp Filer.rsrc
mimeset -f ../FilerApp
}
INSTALL()
{
mkdir -p $appsDir
cp sources/FilerApp $appsDir/Filer
addAppDeskbarSymlink $appsDir/Filer
}