Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id CB80A7819DB for <~alpine/aports@lists.alpinelinux.org>; Sun, 18 Aug 2019 14:34:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 97B87298F0 for <~alpine/aports@lists.alpinelinux.org>; Sun, 18 Aug 2019 16:26:53 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nguRcXgtpub2; Sun, 18 Aug 2019 16:26:52 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1566138411; bh=xQe0sZYfc7HIpBZMoVkPSJ/38C3LEgkk7IKqI9Vhl8Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=e7jPjW0eH2suQs+YR5Hx1rsuEMpZopSJthdHsauuhc07vz3c5BDpBan9XDbzY9m6d U5CO3BhKuotLDaZ6e93c3XvrJCjXbXRr5MFmf1uAZmQ5N6HeL6MMamI8fff3LMrQVf 0tIpC51iTRL2HewcclAU7wajbnr8KJPcyvss+5uL6UOTe2wftvWkBNkkQDM8NhUxHy Y3i2sHh7nwDvXPsvOJzGLQTfONMQMYnd5t6YhNbjn407WuPhJEvv5VvC5guZ4UoYha QpL3wxBrtAknldrvi+PeLu5CuxAKy1IhlTHGHNlvIOaHTAln5bnMMxhIwCYkK9ynVF vBDlq094JeutA== To: ~alpine/aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 4/4] testing/tweeny: new aport Date: Sun, 18 Aug 2019 16:26:38 +0200 Message-Id: <20190818142638.9980-4-bribbers@disroot.org> In-Reply-To: <20190818142638.9980-1-bribbers@disroot.org> References: <20190818142638.9980-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/tweeny/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/tweeny/APKBUILD diff --git a/testing/tweeny/APKBUILD b/testing/tweeny/APKBUILD new file mode 100644 index 0000000000..111365f2d7 --- /dev/null +++ b/testing/tweeny/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Bart Ribbers +# Maintainer: Bart Ribbers +pkgname=tweeny +pkgver=3 +pkgrel=0 +pkgdesc="A modern C++ tweening library" +url="https://mobius3.github.io/tweeny" +arch="noarch" +license="MIT" +options="!check" # no test suite +makedepends="cmake doxygen" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/mobius3/$pkgname/archive/v$pkgver.tar.gz" + +build() { + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DTWEENY_BUILD_DOCUMENTATION=ON + make +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="41f2562a0e55b0fd2c219fab384bf46f70432abb47953b5ac768a29b2ea7b790c6aa56fd44c1fef583f6fa2011010d7dd7e637bcd2d8a9be5c9638a7f2ce7436 tweeny-3.tar.gz" -- 2.21.0