blob: e3b7053e7d684912d8d3e5fcc87bcce813c618b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# $Header: $
DESCRIPTION="Some sys-admin scripts by Gunnar Wrobel"
KEYWORDS="~x86 ~amd64"
HOMEPAGE="http://projects.gunnarwrobel.de/scripts"
LICENSE="GPL-2"
SRC_URI="http://build.pardus.de/downloads/${P}.tar.bz2"
S=${WORKDIR}/${PN}
SLOT=0
src_install()
{
cd ${S}
make install DESTDIR=${D}
}
|