├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── libsunriset.pc.in ├── sun.c ├── sunriset.c ├── sunriset.h ├── tzalias.h └── tzalias.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -W portability -visfm 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/configure.ac -------------------------------------------------------------------------------- /libsunriset.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/libsunriset.pc.in -------------------------------------------------------------------------------- /sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/sun.c -------------------------------------------------------------------------------- /sunriset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/sunriset.c -------------------------------------------------------------------------------- /sunriset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/sunriset.h -------------------------------------------------------------------------------- /tzalias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/tzalias.h -------------------------------------------------------------------------------- /tzalias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/sun/HEAD/tzalias.sh --------------------------------------------------------------------------------