mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
38 lines
898 B
Plaintext
38 lines
898 B
Plaintext
# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
|
|
# Maintainer: mio <miyopan@e.email>
|
|
pkgname=deutex
|
|
pkgver=5.2.2
|
|
pkgrel=2
|
|
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 libpng-dev asciidoc"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/Doom-Utils/deutex/archive/refs/tags/v$pkgver/deutex-v$pkgver.tar.gz"
|
|
options="!check" # no tests
|
|
|
|
prepare() {
|
|
default_prepare
|
|
./bootstrap
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
b64511c8af4d7a0a65fa3951b4ca2d41aac2d6d5d21fe8ec336a684718f7e7940e8cb420201b5d6897690a573d846f22723aa72296bc8cc0dabda680ed5845e3 deutex-v5.2.2.tar.gz
|
|
"
|