mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 17:22:07 +01:00
40 lines
920 B
Plaintext
40 lines
920 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=lua-uuid
|
|
pkgver=2012.05
|
|
pkgrel=1
|
|
pkgdesc="Lua library generating universally unique identifiers based on libuuid"
|
|
url="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#luuid"
|
|
arch="all"
|
|
license="Public Domain"
|
|
depends=
|
|
makedepends="lua-dev util-linux-dev"
|
|
install=
|
|
subpackages=
|
|
|
|
# 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/lua-uuid/luuid-$pkgver.tar.gz"
|
|
#source="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1/luuid.tar.gz"
|
|
|
|
|
|
_builddir="$srcdir"/uuid
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make so || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -Dm755 uuid.so "$pkgdir"/usr/lib/lua/5.1/uuid.so
|
|
}
|
|
|
|
md5sums="28273187c1f8176e98f959889d6abdbc luuid-2012.05.tar.gz"
|