blob: f7fddc233c687ee67d35df4ad47e5b8ec02f0e99 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A dd replacement from the Sortix operating system"
HOMEPAGE="https://sortix.org/rw/"
SRC_URI="https://sortix.org/rw/release/${PN}-portable-${PV}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
RESTRICT="mirror"
src_unpack() {
default
mv "${WORKDIR}/${PN}-portable-${PV}" "${S}"
}
src_install() {
emake PREFIX=/usr DESTDIR="${D}" install
}
|