From bf1b6687fd45bdbf4ae20da6f1725ba2ed913e94 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 4 May 2010 08:04:51 +0000 Subject: main/hunspell: dont use uclibc++ --- main/hunspell/APKBUILD | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'main/hunspell') diff --git a/main/hunspell/APKBUILD b/main/hunspell/APKBUILD index 6883855ae..baf7876c2 100644 --- a/main/hunspell/APKBUILD +++ b/main/hunspell/APKBUILD @@ -6,17 +6,19 @@ pkgdesc="Spell checker and morphological analyzer library and program" url="http://hunspell.sourceforge.net/" license="GPL LGPL MPL" subpackages="$pkgname-dev $pkgname-doc" -depends="libgcc uclibc++" -makedepends="uclibc++-dev" +depends= +makedepends= source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" build () { cd "$srcdir/hunspell-$pkgver" - export CXX="${CXX_UC:-g++-uc}" - ./configure --prefix=/usr --disable-static || return 1 make || return 1 +} + +package() { + cd "$srcdir/hunspell-$pkgver" make DESTDIR="$pkgdir" install || return 1 rm -rf "$pkgdir"/usr/share/locale/locale.alias } -- cgit v1.2.3