diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-11 20:09:27 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-11 20:09:27 +0000 |
commit | f11d3a02f97bd667855cf5176ad368ba70c375d5 (patch) | |
tree | c1160208787595bb3d843a488fa2f224451b419d | |
parent | aad76e45690eaa1c9e72406b3c5722d8c9842054 (diff) | |
download | aports-f11d3a02f97bd667855cf5176ad368ba70c375d5.tar.bz2 aports-f11d3a02f97bd667855cf5176ad368ba70c375d5.tar.xz |
testing/asciidoc: new aport
Text based documentation
http://www.methods.co.nz/asciidoc/
-rw-r--r-- | testing/asciidoc/APKBUILD | 41 | ||||
-rw-r--r-- | testing/asciidoc/vim.patch | 11 |
2 files changed, 52 insertions, 0 deletions
diff --git a/testing/asciidoc/APKBUILD b/testing/asciidoc/APKBUILD new file mode 100644 index 0000000000..ef5c107997 --- /dev/null +++ b/testing/asciidoc/APKBUILD @@ -0,0 +1,41 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=asciidoc +pkgver=8.6.2 +pkgrel=0 +pkgdesc="Text based documentation" +url="http://www.methods.co.nz/asciidoc/" +license="GPL" +depends="python" +makedepends= +install= +subpackages="$pkgname-doc" +source="http://sourceforge.net/projects/asciidoc/files/asciidoc/$pkgver/asciidoc-$pkgver.tar.gz + vim.patch" + +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + cd "$_builddir" + for i in $source; do + case $i in + *.patch) patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="6fa7ca8d05e550b193eeaf7528e37e64 asciidoc-8.6.2.tar.gz +7e98fd7aa3fb61af56814e214bd1ab8a vim.patch" diff --git a/testing/asciidoc/vim.patch b/testing/asciidoc/vim.patch new file mode 100644 index 0000000000..90d098f228 --- /dev/null +++ b/testing/asciidoc/vim.patch @@ -0,0 +1,11 @@ +--- a/Makefile.in.orig ++++ b/Makefile.in +@@ -134,7 +134,7 @@ + done + + install-vim: +- @for d in $(DESTDIR)/$(vimdir) /etc/vim; do \ ++ @for d in $(DESTDIR)/$(vimdir) ; do \ + if ! test -d $$d; then continue; fi ; \ + echo "installing Vim files in $$d" ; \ + $(INSTALL) -d $$d/syntax ; \ |