mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=go-securecookie
|
|
_pkgname=securecookie
|
|
_vendor=gorilla
|
|
pkgver=1.1
|
|
pkgrel=2
|
|
pkgdesc="Encodes and decodes authenticated and optionally encrypted cookie values for Go"
|
|
url="http://www.gorillatoolkit.org"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="go"
|
|
subpackages="$pkgname-doc"
|
|
options="!check" # no testsuite
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/$_vendor/$_pkgname/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
mkdir -p "$pkgdir"/usr/share/doc/$_vendor/$pkgname \
|
|
"$pkgdir"/usr/lib/go/src/github.com/$_vendor/$_pkgname
|
|
for file in \
|
|
LICENSE \
|
|
README.* \
|
|
COPYRIGHT \
|
|
AUTHORS \
|
|
; do \
|
|
test -e $file && mv $file "$pkgdir"/usr/share/doc/$_vendor/$pkgname
|
|
done
|
|
mv * "$pkgdir"/usr/lib/go/src/github.com/$_vendor/$_pkgname
|
|
}
|
|
|
|
sha512sums="6473fdeb32f7a5182dc836e9588f3b7c2a29e1a244f36ac2077caad7a60dedeb5acf2da7766d270a5ef0ab1cef2c229e4b296cdf259569af1e9c99a382e31c2b go-securecookie-1.1.tar.gz"
|