blob: 7e7808dc8874c9831f9444b8212073e0f4db9a57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Modern decompressor for old data compression formats"
HOMEPAGE="https://foo.example.org/"
WANT_AUTOCONF=latest
WANT_AUTOMAKE=latest
inherit autotools
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/temisu/ancient.git"
else
SRC_URI="https://github.com/temisu/ancient/archive/refs/tags/v2.2.0.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="BSD-2"
SLOT="0/2"
IUSE=""
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
eautoreconf
}
|