diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2015-09-10 01:34:23 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2015-09-10 01:34:23 +0300 |
commit | 4464d1c63000ee40ec2e7635fb82d17b1a970c28 (patch) | |
tree | c76f3526e3371aecf1c550dac8cd5b73d91a53cd /media-libs/dcadec | |
parent | f9e32c007b0c173e4fac16f5493bf7303cbf49cb (diff) |
dcadec: added dcadec for kodi
kodi: edited ebuild deps
Diffstat (limited to 'media-libs/dcadec')
-rw-r--r-- | media-libs/dcadec/dcadec-scm.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-libs/dcadec/dcadec-scm.ebuild b/media-libs/dcadec/dcadec-scm.ebuild new file mode 100644 index 0000000..0774c6f --- /dev/null +++ b/media-libs/dcadec/dcadec-scm.ebuild @@ -0,0 +1,28 @@ +#copypast from https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=libcrossguid-git + +EAPI=5 + +inherit base eutils git-r3 + +DESCRIPTION="dcadec is a free DTS Coherent Acoustics decoder with support for HD extensions." +HOMEPAGE="https://github.com/foo86/dcadec" +SRC_URI="" +LICENSE="MIT" +SLOT="0" +KEYWORDS="" + +EGIT_REPO_URI="https://github.com/foo86/dcadec.git" + +src_unpack() { + git-r3_src_unpack +} + +src_compile() { + cd "${S}" + emake +} + +src_install() { +#TODO: multilib + emake DESTDIR="${D}" install +} |