Added sed, fixed ncurses
This commit is contained in:
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