aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/lua-lmd5/APKBUILD
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:43:52 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:45:47 +0000
commit315ddd26b78d81b1c2f0c1d2a85da338b00fdb25 (patch)
tree47205a7adb60694996874da8c3fc720dcd920501 /unmaintained/lua-lmd5/APKBUILD
parentaacae4a7b4456b75cbc938f7656cc7118b1e8646 (diff)
downloadaports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.bz2
aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.xz
unmaintained/: Purge packages unmaintained since v3.0
Removes packages that have been in aports/unmaintained since the 3.0-stable branch. Alpine Linux v3.0 was released on 2014-06-04 and EOL on 2016-05-01, so these packages have not been touched since at least 23 months. The files can still be recovered from the 3.3-stable branch.
Diffstat (limited to 'unmaintained/lua-lmd5/APKBUILD')
-rw-r--r--unmaintained/lua-lmd5/APKBUILD47
1 files changed, 0 insertions, 47 deletions
diff --git a/unmaintained/lua-lmd5/APKBUILD b/unmaintained/lua-lmd5/APKBUILD
deleted file mode 100644
index f3ffdbf5c6..0000000000
--- a/unmaintained/lua-lmd5/APKBUILD
+++ /dev/null
@@ -1,47 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=lua-lmd5
-pkgver=5.1.2011.03.24
-pkgrel=0
-pkgdesc="A message digest library for Lua based on OpenSSL"
-url="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lmd5"
-arch="all"
-license="Public Domain"
-depends="lua"
-makedepends="lua-dev openssl-dev"
-install=
-subpackages="$pkgname-sha"
-
-# seems like they just update the upstream source package. Version is found in
-# luuid.c
-# For date and checksum see:
-# http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/release.txt
-
-source="http://dev.alpinelinux.org/archive/lmd5/lmd5-$pkgver.tar.gz"
-#source="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1/lmd5.tar.gz"
-
-
-_builddir="$srcdir"/md5
-
-prepare() {
- cd "$_builddir"
-}
-
-build() {
- cd "$_builddir"
- make digests LUABIN=/usr/bin || return 1
-}
-
-package() {
- cd "$_builddir"
- local cmod=$(pkg-config --variable INSTALL_CMOD lua)
- mkdir -p "$pkgdir"/$cmod
- cp -a *.so "$pkgdir"/$cmod/
-}
-
-sha() {
- local cmod=$(pkg-config --variable INSTALL_CMOD lua)
- mkdir -p "$subpkgdir"/$cmod
- mv "$pkgdir"/$cmod/sha*.so "$subpkgdir"/$cmod/
-}
-
-md5sums="bc336a560b7b6513982c17eec9692bd6 lmd5-5.1.2011.03.24.tar.gz"