blob: 0774c6f7c5deed40950543cb80da2d78c8f15743 (
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
|
#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
}
|