blob: a9871f68e0d1d9d48b5c4290e3e316b6146c11b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#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_prepare() {
epatch "${FILESDIR}/makefile.patch"
}
src_compile() {
cd "${S}"
emake
}
src_install() {
#TODO: multilib
emake DESTDIR="${D}" install
}
|