Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 5FC90782B66 for <~alpine/aports@lists.alpinelinux.org>; Sun, 6 Dec 2020 14:02:59 +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=1607263423; 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=RDCu3DfC6bhIKG3PguGo5fKgWOg31FfE//Pndbb3erI=; b=TRhU+iD/BtOkBEHlAC5w9fWZsppOwsgv+bJvzFAa8BPG7aITkC1a4RXvnju/PcGAUcPvmN dK/wHoWdoU+PH1Z1apZRi8kXjJ7Lo7+0IjRaP6ozAYlKDN3EH57j3kVOV8vaGtTWuA6/Sz pmz+LsdHuNc5IwUDPXVOba0Yz46i1j/lgXgxfVcoiPs4X3KMLAhm2sVf4uDvUXnbGY9I/h ujMhrkC67v6mbvfrmrbIlBuBcU1wcimL6WNpyAG+0jwMWTfnSYOKqnGQmV5f6FFSyVURrs 1Zj0EtqTV9l4ZYo/EPyS09AKnqfKFABl5H5WRuBDUhxk0ozKkiEaDPqVhf6cug== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 4/5] testing/libticalcs: new aport Message-Id: <20201206140248.844-4-sir@cmpwn.com> In-Reply-To: <20201206140248.844-1-sir@cmpwn.com> References: <20201206140248.844-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 14:03:43 GMT --- testing/libticalcs/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/libticalcs/APKBUILD diff --git a/testing/libticalcs/APKBUILD b/testing/libticalcs/APKBUILD new file mode 100644 index 0000000000..b7c45b2fd5 --- /dev/null +++ b/testing/libticalcs/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: +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" +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() { + cd "$builddir" + 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