More libs and deps
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
VERSION=2.45
|
||||
PACKAGE=binutils
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=${SITE_GNU}/binutils/${SRC}
|
||||
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
||||
CATEGORY=devel
|
||||
DEPENDS=libs/isl
|
||||
|
||||
|
||||
25
devel/cloog/PKGCONF
Normal file
25
devel/cloog/PKGCONF
Normal file
@@ -0,0 +1,25 @@
|
||||
VERSION=0.21.1
|
||||
PACKAGE=cloog
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=git://github.com/periscop/cloog@${PACKAGE}-${VERSION}
|
||||
CATEGORY=devel
|
||||
DEPENDS="devel/autoconf devel/automake libs/isl devel/libtool"
|
||||
|
||||
configure() {
|
||||
echo "Configuring $PACKAGE"
|
||||
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
|
||||
./autogen.sh
|
||||
./configure --with-isl=system
|
||||
}
|
||||
|
||||
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}"
|
||||
}
|
||||
23
devel/libtool/PKGCONF
Normal file
23
devel/libtool/PKGCONF
Normal file
@@ -0,0 +1,23 @@
|
||||
VERSION=2.5.4
|
||||
PACKAGE=libtool
|
||||
SRC=${PACKAGE}-${VERSION}.tar.gz
|
||||
URL=${SITE_GNU}/${PACKAGE}/${SRC}
|
||||
CATEGORY=devel
|
||||
|
||||
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