aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/sprunge/APKBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/testing/sprunge/APKBUILD b/testing/sprunge/APKBUILD
deleted file mode 100644
index 5ae053dcec..0000000000
--- a/testing/sprunge/APKBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=sprunge
-pkgver=0.1
-pkgrel=0
-pkgdesc="Helper script to paste things to http://sprunge.us"
-url="http://strunge.us"
-arch="noarch"
-license="GPLv2"
-depends="curl"
-makedepends=
-install=""
-subpackages=
-source=""
-
-_builddir="$srcdir"
-prepare() {
- return 0
-}
-
-build() {
- cd "$_builddir"
- cat >"$_builddir"/sprunge<<EOF
-#!/bin/sh
-exec curl -F 'sprunge=<-' http://sprunge.us
-EOF
-}
-
-package() {
- cd "$_builddir"
- install -Dm755 sprunge "$pkgdir"/usr/bin/sprunge
-}
-