Added sed, fixed ncurses

This commit is contained in:
2025-09-22 00:19:46 +01:00
parent de0f757590
commit 8c843a5f94
3 changed files with 4497 additions and 1 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ How it works
Package compilation is based around a reasonably simple POSIX `sh` Package compilation is based around a reasonably simple POSIX `sh`
script (NOT a `bash` script, so many things you may be used to just script (NOT a `bash` script, so many things you may be used to just
aren't there!). The script contains two main sections. aren't there!) called `PKGCONF`. The script contains two main sections.
1. Declarations and Definitions 1. Declarations and Definitions
File diff suppressed because it is too large Load Diff
+24
View File
@@ -0,0 +1,24 @@
VERSION=4.9
PACKAGE=sed
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=textproc
DEPS=libs/libiconv
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
LIBS=-lrt ./configure
}
build() {
echo "Building $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make -j ${NCPU}
}
install() {
echo "Installing $PACKAGE to ${DESTDIR}"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make install DESTDIR="${DESTDIR}"
}