mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
Add libiconv pacakge
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
5d17b04f52
commit
0776aea175
1 changed files with 33 additions and 0 deletions
33
pkg/libiconv/build
Executable file
33
pkg/libiconv/build
Executable file
|
@ -0,0 +1,33 @@
|
||||||
|
VERSION="1.15"
|
||||||
|
SRCDIR="libiconv-$VERSION"
|
||||||
|
TARBALL="${SRCDIR}.tar.gz"
|
||||||
|
URL="https://ftp.gnu.org/gnu/libiconv/"
|
||||||
|
SHA256SUM="ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178"
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
local SOURCE="$1"
|
||||||
|
local BUILD="$2"
|
||||||
|
|
||||||
|
$SOURCE/configure --prefix="" --host="$TARGET" --disable-static
|
||||||
|
|
||||||
|
make -j $NUMJOBS
|
||||||
|
}
|
||||||
|
|
||||||
|
deploy() {
|
||||||
|
local SOURCE="$1"
|
||||||
|
local BUILD="$2"
|
||||||
|
local DEPLOY="$3"
|
||||||
|
local DEVDEPLOY="$4"
|
||||||
|
|
||||||
|
make DESTDIR="$DEPLOY" install-strip
|
||||||
|
|
||||||
|
rm -r "$DEPLOY/share"
|
||||||
|
rm ${DEPLOY}/lib/*.la
|
||||||
|
|
||||||
|
mv "$DEPLOY/include" "$DEVDEPLOY"
|
||||||
|
cp -r "$DEPLOY/lib" "$DEVDEPLOY"
|
||||||
|
}
|
Loading…
Reference in a new issue