From 8f6f2e3166478b14b208ecfb94ddf01d69dd7bdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Sun, 29 Sep 2013 08:45:29 +0000 Subject: main/[various]: update config.sub (and remove charset.alias) for musl build. the changes are automatically done based on previous build log errors, so this does not guarantee successful build, but is a required. --- main/hunspell/APKBUILD | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'main/hunspell/APKBUILD') diff --git a/main/hunspell/APKBUILD b/main/hunspell/APKBUILD index f629a1e46c..26aa2c844c 100644 --- a/main/hunspell/APKBUILD +++ b/main/hunspell/APKBUILD @@ -11,8 +11,15 @@ depends= makedepends="gettext-dev" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" +_builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + build() { - cd "$srcdir/hunspell-$pkgver" + cd "$_builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -24,7 +31,7 @@ build() { } package() { - cd "$srcdir/hunspell-$pkgver" + cd "$_builddir" make -j1 DESTDIR="$pkgdir" install || return 1 rm "$pkgdir"/usr/lib/*.la || return 1 } -- cgit v1.2.3