X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 322C4DC18A1 for ; Mon, 2 Apr 2012 14:26:37 +0000 (UTC) Received: by yenl9 with SMTP id l9so1375391yen.13 for ; Mon, 02 Apr 2012 07:26:37 -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:x-mailer; bh=M1qwaV/9hzn1h5cyXtGYElgGWftae1IimtFy16lqvws=; b=jxE+Af3nbTjg66flK4Tyl79fFx3y1riGUgNDcT2tPgZPHsexLAzYBoYoe5nl6dc5vu fOfR9i2hR9ao3lghKoXR9KDQpKnfXkL9AGP6egQT4rd2T24HP5GcCqMA4oZrlCk8DN20 pRZkwdbH1E5d/Zbk/xOXBp6JoVu1VszpSwNxvLorke4M1A4x48u8nQzavXaJOrwYBllp YwBuPYP0gCMD4yPzTfvrILIO2QlSzpscVoVxWav+oqobles0Cf9sV3ZyVK/1xYEXPbP7 m5OAoji+BhRxltSPGE5ICAbpJC3Cy74r1xLSeLieTQaIQIR535pNQChK04/ZE2+SE2yb h49w== Received: by 10.50.197.132 with SMTP id iu4mr5735176igc.4.1333376797167; Mon, 02 Apr 2012 07:26:37 -0700 (PDT) Received: from brooklyn64.my.domain (c-24-13-255-202.hsd1.il.comcast.net. [24.13.255.202]) by mx.google.com with ESMTPS id b11sm12363238igq.7.2012.04.02.07.26.36 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Apr 2012 07:26:36 -0700 (PDT) From: Cameron Banta To: alpine-devel@lists.alpinelinux.org Cc: Cameron Banta Subject: [alpine-devel] [PATCH 1/3] testing/libee: new package Date: Mon, 2 Apr 2012 14:26:18 +0000 Message-Id: <1333376780-1947-1-git-send-email-cbanta@gmail.com> X-Mailer: git-send-email 1.7.9.5 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: this library is a dependency for new version of rsyslog --- testing/libee/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/libee/APKBUILD diff --git a/testing/libee/APKBUILD b/testing/libee/APKBUILD new file mode 100644 index 0000000..6c40319 --- /dev/null +++ b/testing/libee/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Uros Kolar +# Maintainer: Cameron Banta +pkgname=libee +pkgver=0.4.0 +pkgrel=0 +pkgdesc="event Expression Library inspired by CEE" +url="http://www.libee.org" +arch="all" +license="LGPL2.1" +makedepends="libestr-dev" +options="libtool" +subpackages="$pkgname-dev" +source="http://www.libee.org/download/files/download/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir/$pkgname-$pkgver" +prepare() { + cd "$_builddir" + ./configure --prefix=/usr || return 1 +} + +build() { + cd "$_builddir" + #make fails on parallel builds + make -j1 || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="257a23d5cc8f211fb99464a462bc92cd libee-0.4.0.tar.gz" -- 1.7.9.5 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---