Skip to content

Commit 9fe3257

Browse files
committed
added files for packaging (gentoo and debian)
1 parent 0ca45ec commit 9fe3257

File tree

5 files changed

+64
-0
lines changed

5 files changed

+64
-0
lines changed

Diff for: dist/avcut-9999.ebuild

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright 1999-2015 Gentoo Foundation
2+
# Distributed under the terms of the GNU General Public License v2
3+
# $Id$
4+
5+
EAPI=5
6+
7+
if [ "${PV}" == "9999" ]; then
8+
inherit git-r3
9+
fi
10+
11+
DESCRIPTION="Frame-accurate video cutting with only small quality loss"
12+
HOMEPAGE="https://github.com/anyc/avcut.git"
13+
if [ "${PV}" == "9999" ]; then
14+
EGIT_REPO_URI="https://github.com/anyc/avcut.git"
15+
else
16+
SRC_URI="https://github.com/anyc/avcut/archive/avcut-${PV}.tar.gz"
17+
fi
18+
LICENSE="GPL-2"
19+
SLOT="0"
20+
21+
KEYWORDS="~amd64 ~x86"
22+
IUSE=""
23+
24+
RDEPEND="media-video/ffmpeg"
25+
DEPEND="${RDEPEND}"
26+
27+
DOCS=( README.md )
28+
29+
src_install() {
30+
dobin avcut
31+
}

Diff for: dist/debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
avcut (0.1-1) wily; urgency=low
2+
3+
* initial release
4+
5+
-- Mario Kicherer <[email protected]> Sat, 12 Dec 2015 20:13:05 -0500

Diff for: dist/debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8

Diff for: dist/debian/control

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Source: avcut
2+
Section: video
3+
Priority: optional
4+
Maintainer: Mario Kicherer <[email protected]>
5+
Build-Depends: libavcodec-ffmpeg-dev, libavformat-ffmpeg-dev, libavutil-ffmpeg-dev
6+
Standards-Version: 3.9.4
7+
Vcs-Git: git://github.com/anyc/avcut.git
8+
Vcs-Browser: https://github.com/anyc/avcut
9+
10+
Package: avcut
11+
Architecture: i386 amd64 armhf
12+
Depends: libavcodec-ffmpeg, libavformat-ffmpeg, libavutil-ffmpeg
13+
Description: Frame-accurate video cutting with only small quality loss

Diff for: dist/debian/rules

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#! /usr/bin/make -f
2+
3+
DPKG_EXPORT_BUILDFLAGS = 1
4+
include /usr/share/dpkg/default.mk
5+
6+
DESTDIR=$(CURDIR)/debian/tmp
7+
8+
%:
9+
dh $@
10+
11+
override_dh_install:
12+
# mkdir -p "$(DESTDIR)/usr/bin/"
13+
# dh_install avcut "$(DESTDIR)/usr/bin/avcut"
14+
dh_install avcut "/usr/bin/"

0 commit comments

Comments
 (0)