diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-22 14:27:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-22 14:27:34 +0000 |
commit | d41f2b78ed2fdc566e385b012c32f8b80b36aae1 (patch) | |
tree | 6f4bc0e92ee9efbb064bf65a4b6d405e31113a4b | |
parent | 281887a6b7c92099c028b72570c02d9e75f5d27e (diff) | |
download | aports-d41f2b78ed2fdc566e385b012c32f8b80b36aae1.tar.bz2 aports-d41f2b78ed2fdc566e385b012c32f8b80b36aae1.tar.xz |
extra/sed: new aport
-rw-r--r-- | extra/sed/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/sed/APKBUILD b/extra/sed/APKBUILD new file mode 100644 index 0000000000..ca678eaa51 --- /dev/null +++ b/extra/sed/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=sed +pkgver=4.1.5 +pkgrel=2 +subpackages="$pkgname-doc" +pkgdesc="GNU stream editor" +url="http://www.gnu.org/software/sed" +license="GPL" +depends="uclibc" +makedepends="" +source="ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-i18n \ + --disable-nls + make || return 1 + make DESTDIR="$pkgdir" install +} + +md5sums="7a1cbbbb3341287308e140bd4834c3ba sed-4.1.5.tar.gz" |