new: httpd, pooler and mirp

This commit is contained in:
ngn
2024-08-21 07:27:35 +03:00
parent aa67734a7b
commit 7d4e59f3e7
18 changed files with 511 additions and 0 deletions

3
src/apr/.gitignore vendored Normal file

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/apr/changes.md Normal file

@ -0,0 +1,2 @@
# 1.7.4
First version

25
src/apr/pkg.sh Normal file

@ -0,0 +1,25 @@
# general info
NAME="apr"
DESC="Apache Portable Runtime"
VERSION="1.7.4"
# required files
FILES=("https://archive.apache.org/dist/apr/apr-${VERSION}.tar.bz2")
HASHES=("f8a62f3984898ba0ea8b6f26b851cb99")
# install and build depends
DEPENDS=("util-linux")
BUILD=("python3")
PACKAGE(){
tar xf "${NAME}-${VERSION}.tar.bz2"
cd "${NAME}-${VERSION}"
./configure --prefix=/usr \
--disable-static \
--with-installbuilddir=/usr/share/apr-1/build
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r "${NAME}-${VERSION}"
}