aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lua-ldoc/APKBUILD
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
commit6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch)
tree1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/lua-ldoc/APKBUILD
parent66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff)
downloadaports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2
aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/lua-ldoc/APKBUILD')
-rw-r--r--testing/lua-ldoc/APKBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/lua-ldoc/APKBUILD b/testing/lua-ldoc/APKBUILD
deleted file mode 100644
index 3aa4b63d2f..0000000000
--- a/testing/lua-ldoc/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=lua-ldoc
-pkgver=1.0
-pkgrel=0
-pkgdesc="Documentation tool for Lua"
-url="http://github.com/stevedonovan/LDoc"
-arch="noarch"
-license="MIT"
-depends="lua-penlight"
-makedepends="lua-dev"
-install=""
-subpackages=
-source="http://stevedonovan.github.com/files/ldoc-$pkgver.zip"
-
-_luashare=/usr/share/lua/5.1
-_builddir="$srcdir"/LDoc
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
- sed -i '1i \
-#!/usr/bin/env lua' ldoc.lua
-}
-
-build() {
- cd "$_builddir"
-}
-
-package() {
- cd "$_builddir"
- install -Dm755 ldoc.lua "$pkgdir"/usr/bin/ldoc || return 1
- install -d "$pkgdir"/$_luashare || return 1
- cp -a ldoc "$pkgdir"/$_luashare/
-}
-
-md5sums="fcfb9afadd49c672f0cb553f490b2455 ldoc-1.0.zip"