Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6B20A782B92 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=1607289538; 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=g6egXdn2ACbihxW5RpSG1kOI/n+ySQJsuRWJXkP7Sfk=; b=rCh0dP3pOjGpbhg0WMM6eeLk1zliUrnn+0iylHv4ar111H4pgSTxMGLkX8+BpHuvLj/eXT wuoEwwyoVpumTBTUS29Qi/dU5LqrY9/zSeDeLn4gNkRBzZP2LiLe924WJLHv0e9iaC6cxw BVI8yLgA8camvmFnM545zf7ljODuGWZHfq0EyudrIGQ9jr04zZnhaL7hIdBsYI/EZn22lK yyegJ7/30dsgUmTXxcNviRvWVkZcrK04vqJ3M8SHILfHCk4wSb4qheHSNmEDPXPUnsHy4v O3wRuL+/lBNCA9GvSblcdQjdNkReEtWmRyKb+ZfkvMmjI8kms9fhgCRHROnvyA== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH v2 2/5] testing/libticonv: new aport Message-Id: <20201206211800.20258-2-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/libticonv/APKBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 testing/libticonv/APKBUILD diff --git a/testing/libticonv/APKBUILD b/testing/libticonv/APKBUILD new file mode 100644 index 0000000000..19d21706eb --- /dev/null +++ b/testing/libticonv/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Drew DeVault +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 autoconf automake" +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() { + 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