diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/gettext/APKBUILD | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/gettext/APKBUILD')
-rw-r--r-- | main/gettext/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/gettext/APKBUILD b/main/gettext/APKBUILD new file mode 100644 index 0000000000..958e1131c8 --- /dev/null +++ b/main/gettext/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Carlo Landmeter <clandmeter at gmail.com> +pkgname=gettext +pkgver=0.17 +pkgrel=0 +pkgdesc="GNU locale utilities" +url="http://www.gnu.org/software/gettext/gettext.html" +license='GPL' +depends="libiconv expat ncurses" +makedepends="libiconv-dev" +source="ftp://ftp.mirror.nl/pub/mirror/gnu/gettext/gettext-0.17.tar.gz" +subpackages="$pkgname-doc $pkgname-dev" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --mandir=/usr/share/man + unset MAKEFLAGS + make || return 1 + make DESTDIR="$pkgdir/" install +} + +md5sums="58a2bc6d39c0ba57823034d55d65d606 gettext-0.17.tar.gz" |