X-Original-To: alpine-aports@lists.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from smtp.mailstache.io (smtp.mailstache.io [107.170.2.33]) by mail.alpinelinux.org (Postfix) with ESMTP id 226E0DC0076 for ; Wed, 25 Feb 2015 19:44:15 +0000 (UTC) Received: from alpine.mesonet (nat.nwc.ou.edu [129.15.109.254]) by smtp.mailstache.io (Postfix) with ESMTPSA id 9529440322; Wed, 25 Feb 2015 19:44:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=jrjrtech.com; s=mailstache; t=1424893454; bh=a4N5DnXS3lNhiOWBTEbpd551nfpPYxhtRwcCmjY/6Pk=; h=From:To:Cc:Subject:Date:From; b=kieN+6BiBAZj0lIJCVnQWahZIRn/aVjL/tuX3xUyR8y/DEleAufzqH09fGdw6daYo koq2NPSIun7DKNFI0co3TfT25Gi4GfBBg0xLoBzc4VR9GKZ0veqztpyBrSuXO8H90e Un1kgNqi90dGbteWDpymVtgLL1vQosbKzKN3K77dsvJoCk5eeStBIGioWsrATVNHzL gogZjmYw3si4B9+9PRbcLnqowFw6CuWn0hV22KGtAkQD1NB49Ifh0lfjNQrav2F72C WwxPnTiItM+LgH02Hg0K8uFEmRtI32tfTwAqpDCs+Uq7jkwiRCEoXOLkBqt5EKbFrB h/HMvzXn8hdkg== From: John Regan To: alpine-aports@lists.alpinelinux.org Cc: John Regan Subject: [alpine-aports] [PATCH] testing/execline: new aport Date: Wed, 25 Feb 2015 14:44:09 -0500 Message-Id: <1424893449-15115-1-git-send-email-john@jrjrtech.com> X-Mailer: git-send-email 2.2.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/execline/APKBUILD | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 testing/execline/APKBUILD diff --git a/testing/execline/APKBUILD b/testing/execline/APKBUILD new file mode 100644 index 0000000..f78131e --- /dev/null +++ b/testing/execline/APKBUILD @@ -0,0 +1,50 @@ +# Contributor: John Regan +# Maintainer: John Regan +pkgname=execline +pkgver=2.1.0.0 +pkgrel=0 +pkgdesc="A small scripting language, to be used in place of a shell in non-interactive scripts." +url="http://skarnet.org/software/$pkgname/" +arch="all" +license="ISC" +depends="skalibs" +depends_dev="skalibs-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="http://skarnet.org/software/$pkgname/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir/$pkgname-$pkgver" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --enable-shared \ + --enable-static \ + --disable-allstatic \ + --prefix=/usr \ + --libdir=/usr/lib \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="6d7df07380f18c0902b935d9daba37ff execline-2.0.2.1.tar.gz" +sha256sums="c81606403373605129f5d36f13eac42603d5c1f99307b38a3ff6e8544eebd74d execline-2.0.2.1.tar.gz" +sha512sums="f1afcfa1b21a6330c319b8f23ef6989e8696b4f7ec869b596f3ef43d5929ba90a9be4a6ad7627a9b12b726e1fa2362dab43c3c21ae4057ef1b6450827442a20f execline-2.0.2.1.tar.gz" -- 2.2.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---