aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/lua-telescope
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/lua-telescope
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/lua-telescope')
-rw-r--r--unmaintained/lua-telescope/APKBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/unmaintained/lua-telescope/APKBUILD b/unmaintained/lua-telescope/APKBUILD
deleted file mode 100644
index 3e9e267618..0000000000
--- a/unmaintained/lua-telescope/APKBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
-# Maintainer:
-pkgname=lua-telescope
-pkgver=0.4.1
-pkgrel=1
-pkgdesc="Test library for Lua"
-url=https://github.com/norman/telescope
-arch=noarch
-license=MIT
-depends=lua
-source=https://github.com/downloads/norman/telescope/telescope-$pkgver.tar.gz
-
-_builddir=$srcdir/telescope-$pkgver
-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
-}
-
-build() {
- :
-}
-
-package() {
- cd "$_builddir"
- local bindir=$pkgdir/usr/bin
- local luadir=$pkgdir/usr/share/lua/5.1
- install -d "$bindir"
- install tsc "$bindir"
- install -d "$luadir"
- install -m 644 telescope.lua "$luadir"
-}
-
-md5sums="e240350716994873fe1ad7f67918c3b2 telescope-0.4.1.tar.gz"