mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
40 lines
794 B
Plaintext
40 lines
794 B
Plaintext
SUMMARY="RSS and ATOM feeds reader"
|
|
DESCRIPTION="
|
|
FRiSS is a viewer for atom/rss/rdf feeds that can be run as a replicant.
|
|
"
|
|
HOMEPAGE="http://github.com/pulkomandy/fRiSS"
|
|
SRC_URI="https://github.com/pulkomandy/fRiSS/archive/v$portVersion.tar.gz"
|
|
SOURCE_DIR="fRiSS-$portVersion"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
PROVIDES="
|
|
friss = $portVersion
|
|
app:fRiSS = $portVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
cmd:jam
|
|
cmd:gcc
|
|
haiku_devel
|
|
"
|
|
BUILD()
|
|
{
|
|
if [ x86_gcc2 -ne $buildArchitecture ]; then
|
|
sed -i 's/lstdc++.r4/lstdc++/' Jamfile
|
|
fi
|
|
cd src
|
|
jam
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/fRiSS
|
|
cp -a src/friss $appsDir/fRiSS/
|
|
cp -a bin/* $appsDir/fRiSS
|
|
addAppDeskbarSymlink $appsDir/fRiSS/friss fRiSS
|
|
}
|
|
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2004 Andreas Herzig (N3S)
|
|
2010-2014 Adrien Destugues (PulkoMandy)"
|