blob: 60706129410128082b8d7fad697dd8cd43eac8f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Carlo Landmeter <clandmeter at gmail.com>
pkgname=libiconv
pkgver=1.12
pkgrel=8
pkgdesc="GNU charset conversion library for libc which doesn't implement it"
url="http://www.gnu.org/software/libiconv"
arch="all"
license='LGPL'
depends=""
source="http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.12.tar.gz"
subpackages="$pkgname-doc $pkgname-dev"
build() {
cd "$srcdir/$pkgname-$pkgver"
#only build if we need it
[ "$CLIBC" = "uclibc" ] || return 0
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man \
|| return 1
# work around rpath issue
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make || return 1
}
package() {
cd "$srcdir/$pkgname-$pkgver"
if [ "$CLIBC" = "uclibc" ]; then
make DESTDIR="$pkgdir/" install
rm "$pkgdir"/usr/lib/*.la
else
mkdir -p "$pkgdir"/usr/include "$pkgdir"/usr/share/doc "$pkgdir"/usr/lib
# provide empty libiconv.a to allow -liconv linking
ar rc "$pkgdir"/usr/lib/libiconv.a
fi
}
md5sums="c2be282595751535a618ae0edeb8f648 libiconv-1.12.tar.gz"
|