mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
42 lines
881 B
Bash
42 lines
881 B
Bash
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"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2004 Andreas Herzig (N3S)
|
|
2010-2014 Adrien Destugues (PulkoMandy)"
|
|
SOURCE_URI="https://github.com/pulkomandy/fRiSS/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="d0e3d6a0fb3d52db6eff6ba354d24fc648aa2b4021238c3e2fe53800df04db91"
|
|
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
|
|
}
|