Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id C2B44782B31 for <~alpine/aports@lists.alpinelinux.org>; Sun, 6 Dec 2020 14:02:58 +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=cX3OeT9chWXpn0BboOQ7MtQzg+w4y1BOF0nP/3+1eJY=; b=ZGoi5EbatufB8CvuWMSODkYbHjj/3rP84isEHSgeb5hkSxFC7QbFykEZzA8jyXqNbzhtZN KgiRraN0P0Eheqq1SolHBVn+eCixCjw77NRbdGcf8whFY8RC0z2peABvyxE9dwg0bqXcGM n2yxT10XBIsuqxg4pQeCjSSXAllAhIkMwSyy3jbcu7BMYkNfxQAUfPQw6c1c/bU3lLBPqO 7n7K0j8A3N1B3wdfjtcV6iZzX/1n6D5Bs9ui8HG7UkP1hgBHsQIIu1D124nXpPvcEDHSta cbA9emJQOoJmjS70iFSzhb6cCPQ2r5mrYt2vMNJ/rMOvKnYwAe9YBWMpC+XBcg== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 3/5] testing/libticonv: new aport Message-Id: <20201206140248.844-3-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/libticonv/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/libticonv/APKBUILD diff --git a/testing/libticonv/APKBUILD b/testing/libticonv/APKBUILD new file mode 100644 index 0000000000..0fa52bcb9f --- /dev/null +++ b/testing/libticonv/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: +pkgname=libticonv +pkgver=1.1.5 +pkgrel=0 +pkgdesc="Texas Instruments character set conversion library" +url="http://lpg.ticalc.org/prj_tilp/" +arch="all" +license="GPL-2.0-only" +makedepends="bzip2 glib-dev libtool" +subpackages="$pkgname-dev" +source="$pkgname-$pkgver.tar.bz2::http://downloads.sourceforge.net/project/tilp/tilp2-linux/tilp2-1.18/$pkgname-$pkgver.tar.bz2" +options="!check" # No upstream tests + +build() { + cd "$builddir" + autoreconf -if + ./configure --prefix=/usr --enable-iconv +} + +package() { + make install DESTDIR="$pkgdir" + rm -rf "$pkgdir"/usr/share/locale +} + +sha512sums="ea589344a656c5c7d28ed45e8da36bf7b746b7a82d77a257ddd305e2ebdc34f0ae14a6090e991f47ef7ad37cdc8d7182181c705fb0814e671ef764ca2a6dc2bf libticonv-1.1.5.tar.bz2" -- 2.29.2