summaryrefslogtreecommitdiff
path: root/Ports
AgeCommit message (Collapse)Author
2019-08-25Ports/ncurses: Unbreak patch so we can build with latest ncurses masterAndreas Kling
Maybe we should build a specific version of ncurses instead but this at least makes it work again for now.
2019-08-04Ports: mbedtlsConrad Pankoff
This is a very basic mbedtls port. I've disabled the networking bits, since they want some macros that we don't have defined. We might not even want the networking functions anyway, since they wouldn't play very nice with CEventLoop and friends.
2019-07-21Ports: Add GNU make 4.2! :^)Andreas Kling
2019-07-01Ports: Force curl to follow redirects in run_fetch_web() (#266)Dan MacDonald
This fixes downloading files from github when building ports.
2019-07-01Ports: Fix SDL2 port trying to build against PulseAudio for some reason.Andreas Kling
I didn't look into why, but for some reason the SDL2 cmake build system thinks it should build against PulseAudio which we definitely don't have. So just tell it explicitly not to do that. Fixes #265.
2019-06-09Ports: Add 'figlet' port.Andreas Kling
This was the first piece of 3rd party software I got running on Serenity, so having it as a port feels like some kind of milestone. I think :^)
2019-06-05Ports: Remove bashisms and switch all scripts to /bin/sh.Larkin Nickle
2019-05-30Ports: Add gcc-8.3.0 port :^)Andreas Kling
2019-05-30Ports: Build binutils from tarball instead of git.Andreas Kling
2019-05-29LibM LibC: add fixes for Lua port.Mustafa Ali CAN
2019-05-29Port:Add LuaMustafa Ali CAN
2019-05-29Port: lessChristopher Dumas
2019-05-28Ports: Add linksRobin Burchell
Doesn't actually run yet. in_term's read() fails with EFAULT for reasons that are presently beyond me, points to a bug in Serenity.
2019-05-28Ports: Vim and ncursesChristopher Dumas
2019-05-28Ports: Add GNU binutils.Andreas Kling
2019-05-28LibC: Move struct timeval to sys/time.h. #POSIXAndreas Kling
2019-05-28Ports: Replace run_command use in bash with a run_replace_in_file helperRobin Burchell
This way, we don't (in the ports themselves) depend on perl as a public interface, which means if we ever have to, we can port to something else easier.
2019-05-28Ports: Remove MAKEOPTS hacks from bashRobin Burchell
This doesn't seem to go wrong anymore.
2019-05-28Move everything to a subdirectoryRobin Burchell
Also don't run cd for the initial git clone (DERP!), and other bash port fixes.
2019-05-28Add WIP bash portRobin Burchell
2019-05-28port_include: Various updatesRobin Burchell
* Prints what is run, which is useful for trace purposes. * Fix autotools configure to respect arguments * Add run_patch for applying patches
2019-05-28Add the start of a simple ports infrastructureRobin Burchell