diff options
author | Antoine Fontaine <antoine.fontaine@epfl.ch> | 2019-12-03 15:14:36 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-12-03 18:25:28 +0100 |
commit | a20f01e870e7681505e6d4aaca1b7f3e2688b593 (patch) | |
tree | 06cd726f4aada4a31ba7d9067d16b0c2a05bf1d9 /testing/deutex | |
parent | 71a4e06ed8d82d81af449a62aa1ddd052281c731 (diff) | |
download | aports-a20f01e870e7681505e6d4aaca1b7f3e2688b593.tar.bz2 aports-a20f01e870e7681505e6d4aaca1b7f3e2688b593.tar.xz |
testing/deutex: new aport
Diffstat (limited to 'testing/deutex')
-rw-r--r-- | testing/deutex/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/deutex/APKBUILD b/testing/deutex/APKBUILD new file mode 100644 index 0000000000..22190bb951 --- /dev/null +++ b/testing/deutex/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch> +# Maintainer: Antoine Fontaine <antoine.fontaine@epfl.ch> +pkgname="deutex" +pkgver="5.2.1" +pkgrel=0 +pkgdesc="WAD composer for Doom, Heretic, Hexen, and Strife" +url="https://github.com/Doom-Utils/deutex" +arch="all" +license="GPL-2.0-or-later" +makedepends="autoconf automake" +source="$pkgname-$pkgver.tar.gz::https://github.com/Doom-Utils/deutex/archive/v$pkgver.tar.gz" + +prepare() { + default_prepare + + aclocal + autoheader + automake --add-missing + autoconf +} + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="976ba8ac3d3fef9cfec77272ed9b492abe1bae559633f4460c1a1f52ba373c0d2953831a18956afde0935ab7759c3bcb3274a8dec910c78af10044d0f568ba92 deutex-5.2.1.tar.gz" |