Received: from devianza.investici.org (devianza.investici.org [198.167.222.108]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 8187C782CEB for <~alpine/aports@lists.alpinelinux.org>; Thu, 29 Apr 2021 15:54:02 +0000 (UTC) Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4FWKmp3417z6vCh; Thu, 29 Apr 2021 15:54:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=paranoici.org; s=stigmate; t=1619711642; bh=h3AX89zbnzi4bLLxp4GzdYqKvw4zFA3xPYD2znpYlvg=; h=From:To:Cc:Subject:Date:From; b=rLmGI/6WvED5bBIBVLAEtKsmfz+7gVaxe7jWDTe60y6l2KqOKotsmb7bytMoJeOt7 3tMCFkLFjMJ5hH77/996GH/H1IsoqZlsGgq5oviGpMOoXT+Q+CUvTyntPuDt0lfpDR XxsE1rgW5/qKi4AlGtTRTLqq0N/EaS1tzXGYKCQg= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: kikoodx@paranoici.org) by localhost (Postfix) with ESMTPSA id 4FWKmp1gVQz6vBD; Thu, 29 Apr 2021 15:54:02 +0000 (UTC) From: KikooDX To: ~alpine/aports@lists.alpinelinux.org Cc: KikooDX Subject: [PATCH] testing/mkg3a: new aport Date: Thu, 29 Apr 2021 17:53:55 +0200 Message-Id: <20210429155355.29035-1-kikoodx@paranoici.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/mkg3a/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/mkg3a/APKBUILD diff --git a/testing/mkg3a/APKBUILD b/testing/mkg3a/APKBUILD new file mode 100644 index 0000000000..b8b43ecb69 --- /dev/null +++ b/testing/mkg3a/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: KikooDX +# Maintainer: KikooDX +pkgname=mkg3a +pkgver=0.5.0 +pkgrel=0 +pkgdesc="A tool to create Casio FX-CG addon (.g3a) files" +url="https://gitlab.com/taricorp/mkg3a" +arch="all" +license="Zlib" +depends="libpng" +makedepends="libpng-dev cmake" +subpackages="$pkgname-doc" +options="!check" # there is no test suite +source="$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/mkg3a-$pkgver.tar.gz" + +build() { + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + make -C build DESTDIR="$pkgdir" install +} + +sha512sums="a65f58e3691892473d3a56c6f56155dafe37bfc5e31a112978ed1c0c82f60d67715949a807cb5a8beb8d3441501c20c6ff2432e0c12270900f2fe343baf31fe8 mkg3a-0.5.0.tar.gz" -- 2.31.1