X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 4BF64DC14F7 for ; Sun, 14 Jun 2015 02:43:06 +0000 (UTC) Received: from mail-yh0-f43.google.com (mail-yh0-f43.google.com [209.85.213.43]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 184EDDC0092 for ; Sun, 14 Jun 2015 02:43:00 +0000 (UTC) Received: by yhid80 with SMTP id d80so25959699yhi.1 for ; Sat, 13 Jun 2015 19:43:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=4TLCmLgOMLypLJKY0NLhToPNHB9Vyf1IuJqQ1GY7RjQ=; b=AAJureqz3BLO+8FLRA7N56fe7Ime1mkzQ/6tqW9V+KULsA24+ocA9CyiR9my54u6M3 0H5oY2BVKwRESAc++uwQd1F+hbCbxOKbke9TjuytyVnVAtuwntI4aJTddo1PByKKdUJL hBhqcjIL0KbiZm2zu8n+rycxeJrTqk13dH/s6yFPQPkWUgQOX2OylmM/u6FoJjksHutI qUMi8p1tFMXLBUx2WsZy53q0L/Z4ooLV6EAC0x+eQSrxnln9pVMzMLTYbmwCebFeIMsN 5qV/kf7fxAw6SLf66YPfA/YZJTDoCkYDcyMnbnfds6PFkcJBpW8djnKOMvfMV5BgXHM2 ilmw== X-Received: by 10.129.48.79 with SMTP id w76mr1622446yww.3.1434249780221; Sat, 13 Jun 2015 19:43:00 -0700 (PDT) Received: from pellet.my.domain (c-174-49-78-224.hsd1.ga.comcast.net. [174.49.78.224]) by mx.google.com with ESMTPSA id o46sm3602052yhd.5.2015.06.13.19.42.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 13 Jun 2015 19:42:59 -0700 (PDT) From: Bennett Goble To: alpine-aports@lists.alpinelinux.org Cc: Bennett Goble Subject: [alpine-aports] [PATCH] testing/wslay: new aport Date: Sat, 13 Jun 2015 22:42:45 -0400 Message-Id: <1434249765-27788-1-git-send-email-nivardus@gmail.com> X-Mailer: git-send-email 2.4.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://wslay.sourceforget.net/ wslay is a websocket library written in C --- testing/wslay/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/wslay/APKBUILD diff --git a/testing/wslay/APKBUILD b/testing/wslay/APKBUILD new file mode 100644 index 0000000..a1f6f92 --- /dev/null +++ b/testing/wslay/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Bennett Goble +# Maintainer: Bennett Goble + +pkgname=wslay +pkgver=1.0.0 +pkgrel=1 +pkgdesc="The WebSocket library in C" +url="http://wslay.sourceforge.net/" +arch="all" +license="MIT" +depends= +makedepends="autoconf automake libtool py-sphinx" +install= +subpackages="$pkgname-doc $pkgname-dev" +source="https://github.com/tatsuhiro-t/wslay/archive/release-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-release-$pkgver + +prepare() { + cd "$_builddir" + autoreconf -i && automake && autoconf || return 1 +} + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="983f75df5a18693edba23a9d793036e4 release-1.0.0.tar.gz" +sha256sums="874c4a6aa15b596846ff3a3ef848b8a6e6f4ca579a1657df9b318a06ac6c79a6 release-1.0.0.tar.gz" +sha512sums="12aadf5a36a38efcbec68f42bc49f6fdc272be44b986e2ca26d6bf0660bf39437a400a7f33de9d8abfad0b2fde64ffef32cea5a586868aa33fa685e257e39a35 release-1.0.0.tar.gz" -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---