You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/vstrip/vstrip-0.8f.ebuild

39 lines
703 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit edos2unix toolchain-funcs
DESCRIPTION="A program to split non-css dvd vobs into individual chapters"
HOMEPAGE="http://www.maven.de/code"
SRC_URI="http://files.digital-digest.com/downloads/files/encode/vStrip_${PV/./}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
BDEPEND="app-arch/unzip"
S="${WORKDIR}/${PN}"
src_prepare() {
eapply "${FILESDIR}"/${P}-gentoo.patch
edos2unix *.c *.h
local f
for f in *.c *.h ; do
echo >> "${f}" || die
done
default
}
src_compile() {
emake CFLAGS="${CFLAGS} -D__UNIX__" CC="$(tc-getCC)"
}
src_install() {
dobin vstrip
}