Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 9FAAC782B9C for <~alpine/aports@lists.alpinelinux.org>; Sun, 6 Dec 2020 21:18:14 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cmpwn.com; s=key1; t=1607289539; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=sU8BSNybD0VRjQPTkBGNK3/xRXOoKWtv/Py4D9l59N0=; b=nuaejXx2eiyFejrsKvPXEkxLvxPJMMoOlYeas2bL4ukZA+IWJWk8Ana/bGOfVr/A0LqLvl 5OmEDtxH5Or/w42asitI8JL8cdz73Q+X48/pgJ2eMYZ+0XgM4c33z/GXEvddT/2t9jFfZJ vbtyK0gfpCDSFMJ8MtzFJ9/FbTWkg7C64TyPJvl+msxiBt3bC+G60MirP3ybw/aR4hXT85 eMeRPErCa7B9mQ16gT2yeGfZYSTj6HUSAz7P1KbRNwJZyNCMlN+VqCjGgJKUhGKhCmyx/H CCOSS+RypZNpySZbScBzg/TGgQDxbWb2BcpKUNUmVNdejuoBNzsRFh8Kx6FwTg== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH v2 4/5] testing/libticalcs: new aport Message-Id: <20201206211800.20258-4-sir@cmpwn.com> In-Reply-To: <20201206211800.20258-1-sir@cmpwn.com> References: <20201206211800.20258-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: sir@cmpwn.com Date: Sun, 06 Dec 2020 21:18:59 GMT --- testing/libticalcs/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/libticalcs/APKBUILD diff --git a/testing/libticalcs/APKBUILD b/testing/libticalcs/APKBUILD new file mode 100644 index 0000000000..eb41e6f47a --- /dev/null +++ b/testing/libticalcs/APKBUILD @@ -0,0 +1,27 @@ +# Maintainer: Drew DeVault +pkgname=libticalcs +pkgver=1.1.9 +pkgrel=0 +pkgdesc="Texas Instruments calculator library" +url="http://lpg.ticalc.org/prj_tilp/" +arch="all" +license="GPL-2.0-only" +makedepends="bzip2 libticables-dev libtifiles-dev libtool autoconf automake" +subpackages="$pkgname-dev" +source=" + $pkgname-$pkgver.tar.bz2::http://downloads.sourceforge.net/project/tilp/tilp2-linux/tilp2-1.18/${pkgname}2-$pkgver.tar.bz2 +" +options="!check" # No upstream tests +builddir="$srcdir/${pkgname}2-$pkgver" + +build() { + autoreconf -if + ./configure --prefix=/usr +} + +package() { + make install DESTDIR="$pkgdir" + rm -rf "$pkgdir"/usr/share/locale +} + +sha512sums="a55fa92df787929397f4ed3e8f922355f71c7883459ceb98fbb8d39d18f06441147188aaabf7a67083d70549443e439744e68527742e2b7b5d3d2838cc41b4da libticalcs-1.1.9.tar.bz2" -- 2.29.2