mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-09 15:42:19 +01:00
36 lines
886 B
Plaintext
36 lines
886 B
Plaintext
# Contributor: "Andrzej Trzaska <atrzaska2@gmail.com>"
|
|
# Maintainer: "Andrzej Trzaska <atrzaska2@gmail.com>"
|
|
pkgname=ossp-uuid
|
|
pkgver=1.6.2
|
|
pkgrel=0
|
|
pkgdesc="Open Source Software Project Universally Unique Identifier (UUID)"
|
|
url="http://www.ossp.org/pkg/lib/uuid/"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
source="https://mirrors.ocf.berkeley.edu/debian/pool/main/o/ossp-uuid/ossp-uuid_$pkgver.orig.tar.gz"
|
|
builddir="$srcdir/uuid-$pkgver"
|
|
|
|
prepare() {
|
|
update_config_guess
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr --without-pgsql --without-perl --without-php
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="16c7e016ce08d7679cc6ee7dec43a886a8c351960acdde99f8f9b590c7232d521bc6e66e4766d969d22c3f835dcc2814fdecc44eef1cd11e7b9b0f9c41b5c03e ossp-uuid_1.6.2.orig.tar.gz"
|