Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 8BB59781994 for <~alpine/aports@lists.alpinelinux.org>; Sun, 6 Dec 2020 14:02:57 +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=1607263422; 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; bh=RZvB172pu+cCA4VQuyQg6FWx97JGN8a6zxuMgl/P90A=; b=q2GUOi4HHk5b2i40nWGmNu/rldcebn3wWOSo3HN5d7sVA1wr4+ZQTDpPHVdX8sBdTsJsW1 TgYFOZ8n1G6puNl9iHglSxl6LGL+pppAmKn0p+pQCo3AwLUwg6R7XFozypt7C0w//MF1C3 9ggJDKLIDbSKWYHEwXGF5HiFobmzSn3TkrJ+YPMx4jVR2zGQBFJv/IGSAOX0W00LGvAUtD pU+Bs/Zpu6nerKkid3QzMVN6SQ6BXRIDeh7+pHifA5k+O4zX/I7d4DvkAgsNzNTXFGWVuu UUstkyo2eduwP7Gp/ToUT4FeStAIdawz/QTz/GSJFPAkPfiRNJucpGapYhy/jw== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 1/5] testing/libtifiles: new aport Message-Id: <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:42 GMT --- testing/libtifiles/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/libtifiles/APKBUILD diff --git a/testing/libtifiles/APKBUILD b/testing/libtifiles/APKBUILD new file mode 100644 index 0000000000..f5b6d4d118 --- /dev/null +++ b/testing/libtifiles/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: +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="bzip2 libusb-dev libarchive-dev libticonv-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="e2ef4de0ce8c78f0da4098ec618a7194f9b94a028f9cb54a0ea1c29c00028d7cf144a067d8aaf8010ad094378b6426d05621d530cfbfa05f793f6c1ed41fcaef libtifiles-1.1.7.tar.bz2" -- 2.29.2