1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00

testing/easy-rsa: update source

This commit is contained in:
Fabian Affolter 2013-10-29 10:21:31 +00:00 committed by Natanael Copa
parent 6fa1faa72e
commit b68dedee7a

View file

@ -5,15 +5,15 @@ pkgrel=0
pkgdesc="Simple shell based CA utility"
url="https://github.com/OpenVPN/easy-rsa"
arch="noarch"
license="GPLv2"
license="GPL2"
depends="openssl"
depends_dev=""
makedepends="$depends_dev autoconf automake"
install=""
subpackages="$pkgname-doc"
source="saveas-https://github.com/OpenVPN/easy-rsa/archive/v$pkgver.tar.gz/$pkgname-$pkgver.tar.gz"
source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVPN/easy-rsa/archive/v$pkgver.tar.gz"
_builddir="$srcdir"/easy-rsa-$pkgver
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
local i
cd "$_builddir"
@ -28,13 +28,13 @@ prepare() {
build() {
cd "$_builddir"
./configure --prefix=/usr
make
make || return 1
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir"/usr/share/easy-rsa
make install DESTDIR="$pkgdir"
make install DESTDIR="$pkgdir" || return 1
}
md5sums="bb0478283f7f786a594a469257b85b71 easy-rsa-2.2.0.tar.gz"