Compare commits

...

3 Commits

Author SHA1 Message Date
Jonas 'Sortie' Termansen f204a457d1 fixup! Add service(8) restart and terminate commands. 2024-05-12 22:49:06 +02:00
Jonas 'Sortie' Termansen 5ec05cb872 fixup! Add php port. 2024-05-12 22:47:40 +02:00
Jonas 'Sortie' Termansen 9a200ca880 fixup! Add libsqlite3 port. 2024-05-12 22:47:40 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -873,7 +873,7 @@ static void log_status(const char* status, const char* format, ...)
fprintf(stderr, "[\e[91mFAILED\e[m] ");
else if ( !strcmp(status, "stopping") )
fprintf(stderr, "[ ] ");
else if ( !strcmp(status, "klling") )
else if ( !strcmp(status, "killing") )
fprintf(stderr, "[ ] ");
else if ( !strcmp(status, "restart") )
fprintf(stderr, "[ ] ");

View File

@ -13,7 +13,7 @@ UPSTREAM_SITE=https://www.sqlite.org/$VERSION_YEAR
UPSTREAM_ARCHIVE=$ARCHIVE
RELEASE_SEARCH_PAGE=https://www.sqlite.org/download.html
RELEASE_SEARCH_REGEX='^PRODUCT,([0-9]+\.[0-9]+\.[0-9]+),'
LICENSE=LICENSE=PUBLIC-DOMAIN
LICENSE=PUBLIC-DOMAIN
BUILD_SYSTEM=configure
MAKE_VARS='V=1'
POST_INSTALL=tix-eradicate-libtool-la

View File

@ -8,7 +8,7 @@ SHA256SUM=39695f5bd107892e36fd2ed6b3d3a78140fd4b05d556d6c6531a921633cacb5f
UPSTREAM_SITE=https://www.php.net/distributions
UPSTREAM_ARCHIVE=$ARCHIVE
RELEASE_SEARCH_PAGE=https://www.php.net/downloads.php
LICENSE=LICENSE=PHP-3.0
LICENSE=PHP-3.0
USE_BOOTSTRAP=true # php uses php to build phar
BOOTSTRAP_BUILD_SYSTEM=configure
BOOTSTRAP_CONFIGURE_ARGS='--with-layout=GNU --disable-cgi --disable-phpdbg --disable-all --enable-phar'