0
0
Fork 0
haikuports/app-misc/gcal/gcal-4.1.recipe

61 lines
1.2 KiB
Bash
Raw Permalink Normal View History

2014-12-09 16:43:55 +00:00
SUMMARY="Program for calculating and printing calendars"
DESCRIPTION="
Gcal is a program for calculating and printing calendars. Gcal displays hybrid \
and proleptic Julian and Gregorian calendar sheets, respectively for one month, \
three months, or a whole year. It also displays eternal holiday lists for many \
countries around the globe, and features a very powerful creation of fixed date \
2016-02-26 15:33:51 +00:00
lists that can be used for reminding purposes."
2014-12-09 16:43:55 +00:00
HOMEPAGE="http://www.gnu.org/software/gcal/"
COPYRIGHT="1994-2017 Free Software Foundation Inc."
2014-12-09 16:43:55 +00:00
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="http://ftp.gnu.org/gnu/gcal/gcal-$portVersion.tar.gz"
CHECKSUM_SHA256="363cdb016125bd64cfe5fcaa28b4b828fdfe88b1ee76d9f58ba9ea120587bb39"
2014-12-09 16:43:55 +00:00
ARCHITECTURES="all"
2014-12-09 16:43:55 +00:00
PROVIDES="
gcal = $portVersion
cmd:cal
2018-08-08 12:24:56 +00:00
cmd:gcal
2014-12-09 16:43:55 +00:00
cmd:gcal2txt
cmd:tcal
cmd:txt2gcal
"
REQUIRES="
haiku
lib:libintl
2016-08-07 12:15:28 +00:00
lib:libncurses
2014-12-09 16:43:55 +00:00
"
2016-02-17 19:26:37 +00:00
BUILD_REQUIRES="
haiku_devel
devel:libintl
devel:libncurses
2016-02-17 19:26:37 +00:00
"
2014-12-09 16:43:55 +00:00
BUILD_PREREQUIRES="
2018-08-08 12:24:56 +00:00
cmd:awk
cmd:gcc
2014-12-09 16:43:55 +00:00
cmd:grep
cmd:make
cmd:sed
cmd:pkg_config
2014-12-09 16:43:55 +00:00
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
ln -s $binDir/gcal $binDir/cal
2014-12-09 16:43:55 +00:00
}
TEST()
{
make check
}