Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6C201782B9A 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=UpJvXQIkBFvdqleB5LYMBJeD/oDKAmAocTjhE6PMLvQ=; b=UMaS5ySSMNO6MtS31TQMPar/UUG8+SW7ZrKL5LDZI+vHX4/rrFSRPuFX509aPLLO/+oBWx exsmL4271h9Fn7rAW7xX29ncZzDyMvQqrmOwbxfe9h2gLF3ZwFVi2BJ3YOB2dDYpZfQvwd HJzjCgN4OrWeEJsP8Zq6v8Ir8QinTleZoVXwUL5WGjv2hwhhkeilq17ERc/lNJP+l5z5u6 4yB7WS661uAOAaqBn9zwmAp4xa9//a0hI9/EtCdWmD/0RKn9t1Nk0pjegpt6ZjiEgTapOE geOzmDHJNYMuCJhEJriv8IYvte34rTdqX83/UxJS0Z6jsXorFhHhGJq4MQ9nDw== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH v2 3/5] testing/libtifiles: new aport Message-Id: <20201206211800.20258-3-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:58 GMT --- testing/libtifiles/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/libtifiles/APKBUILD diff --git a/testing/libtifiles/APKBUILD b/testing/libtifiles/APKBUILD new file mode 100644 index 0000000000..b2a102f09d --- /dev/null +++ b/testing/libtifiles/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Drew DeVault +pkgname=libtifiles +pkgver=1.1.7 +pkgrel=0 +pkgdesc="Texas Instruments file format library" +url="http://lpg.ticalc.org/prj_tilp/" +arch="all" +license="GPL-2.0-only" +makedepends=" + autoconf + automake + bzip2 + libarchive-dev + libticonv-dev + libtool + libusb-dev +" +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="e2ef4de0ce8c78f0da4098ec618a7194f9b94a028f9cb54a0ea1c29c00028d7cf144a067d8aaf8010ad094378b6426d05621d530cfbfa05f793f6c1ed41fcaef libtifiles-1.1.7.tar.bz2" -- 2.29.2