aboutsummaryrefslogtreecommitdiffstats
path: root/main/lua-stdlib-debug
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-28 23:06:32 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-28 23:06:32 +0100
commit65010e4ea4b5ff37f6cc677674423e1ffa55e814 (patch)
tree68fa1d7b3f1d46cd9e1e0a4048ba949cf91f4268 /main/lua-stdlib-debug
parentae664fe0d034529e7c4819c1dd1758877dd77500 (diff)
downloadaports-65010e4ea4b5ff37f6cc677674423e1ffa55e814.tar.bz2
aports-65010e4ea4b5ff37f6cc677674423e1ffa55e814.tar.xz
Revert "main/lua-lyaml: add missing dependencies"
This reverts commit 4d7e3cf3beb541dec1f44751e698c72a3f47bb5e. This commit violates common policies and best-practices for packaging Lua libraries.
Diffstat (limited to 'main/lua-stdlib-debug')
-rw-r--r--main/lua-stdlib-debug/APKBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/main/lua-stdlib-debug/APKBUILD b/main/lua-stdlib-debug/APKBUILD
deleted file mode 100644
index e1d41fd895..0000000000
--- a/main/lua-stdlib-debug/APKBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
-# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
-_pkgname=stdlib-debug
-pkgname=lua-$_pkgname
-pkgver=1.0
-pkgrel=0
-pkgdesc="Lua Debug Hints Library"
-url="https://lua-stdlib.github.io/_debug/"
-arch="all"
-license="MIT"
-options="!check"
-source="$_pkgname-$pkgver.tar.gz::https://github.com/lua-stdlib/_debug/archive/v$pkgver.tar.gz"
-builddir="$srcdir/_debug-$pkgver/lib/std/_debug"
-
-build() {
- :
-}
-
-package() {
- cd "$builddir"
-
- local luadir=$pkgdir/usr/share/lua
- local cdir=common/std/_debug
-
- for mod in *.lua; do
- install -D -m 644 $mod "$luadir"/$cdir/$mod
- done
-
- for ver in 5.1 5.2 5.3; do
- local dir=$luadir/$ver/std
- mkdir -p "$dir"
- ln -s ../../$cdir "$dir"
- done
-}
-
-sha512sums="ed9b5135489b35805f8d4f658d0b707d3e722ee4c1b6c7dea90d029b23923fb32640ffb20c4a7914cd6e6351edb26df9749256176757c7f031b1327d4bf42ec0 stdlib-debug-1.0.tar.gz"