Added tar, mpc and mpfr
This commit is contained in:
23
arch/tar/PKGCONF
Normal file
23
arch/tar/PKGCONF
Normal file
@@ -0,0 +1,23 @@
|
||||
VERSION=1.35
|
||||
PACKAGE=tar
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
||||
CATEGORY=arch
|
||||
|
||||
configure() {
|
||||
echo "Configuring $PACKAGE"
|
||||
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
||||
LIBS="-lintl -liconv" ./configure --disable-year2038
|
||||
}
|
||||
|
||||
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}"
|
||||
}
|
||||
24
libs/mpc/PKGCONF
Normal file
24
libs/mpc/PKGCONF
Normal file
@@ -0,0 +1,24 @@
|
||||
PACKAGE=mpc
|
||||
VERSION=1.3.1
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
||||
CATEGORY=libs
|
||||
DEPENDS="libs/gmp libs/mpfr"
|
||||
|
||||
configure() {
|
||||
echo "Configuring $PACKAGE"
|
||||
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
||||
./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}"
|
||||
}
|
||||
24
libs/mpfr/PKGCONF
Normal file
24
libs/mpfr/PKGCONF
Normal file
@@ -0,0 +1,24 @@
|
||||
PACKAGE=mpfr
|
||||
VERSION=4.2.2
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
||||
CATEGORY=libs
|
||||
DEPENDS="libs/gmp"
|
||||
|
||||
configure() {
|
||||
echo "Configuring $PACKAGE"
|
||||
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
||||
./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