Added sed, fixed ncurses
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
4472
libs/ncurses/patches/01-fix-cases.patch
Normal file
4472
libs/ncurses/patches/01-fix-cases.patch
Normal file
File diff suppressed because it is too large
Load Diff
24
textproc/sed/PKGCONF
Normal file
24
textproc/sed/PKGCONF
Normal 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}"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user