diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-11-18 19:03:10 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-11-18 19:03:10 +0000 |
commit | f752df4efb16139989e43a4e1110888001cfae5a (patch) | |
tree | 0d0b669277d53ba5286cd10b559ac923ff28661b /app-admin/vasile/vasile-4.0.ebuild | |
parent | 9e7fcd9700e3d0f7957f3b9937ac3e606cc9606e (diff) |
vasile 4.0
Diffstat (limited to 'app-admin/vasile/vasile-4.0.ebuild')
-rw-r--r-- | app-admin/vasile/vasile-4.0.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-admin/vasile/vasile-4.0.ebuild b/app-admin/vasile/vasile-4.0.ebuild new file mode 100644 index 00000000..b0a7c567 --- /dev/null +++ b/app-admin/vasile/vasile-4.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils git-2 + +DESCRIPTION="Versatile Advanced Script for ISO and Latest Enchantments" +HOMEPAGE="http://redcorelinux.org" + +EGIT_BRANCH="master" +EGIT_REPO_URI="https://gitlab.com/redcore/vasile.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64" +IUSE="" + +DEPEND=" + sys-apps/gentoo-functions + sys-fs/squashfs-tools + sys-boot/grub:2 + dev-libs/libisoburn + sys-fs/mtools" +RDEPEND="${DEPEND}" + +src_install() { + dodir /usr/bin + exeinto /usr/bin + doexe ${S}/${PN} + dodir /usr/$(get_libdir)/${PN} + insinto /usr/$(get_libdir)/${PN} + doins ${S}/libvasile + dodir /usr/share/${PN} + insinto /usr/share/${PN} + insopts -m 755 + doins ${S}/make* + doins ${S}/*mode +} + |