-
Notifications
You must be signed in to change notification settings - Fork 1
/
nix-install-alsa-ucm-conf
executable file
·87 lines (72 loc) · 1.74 KB
/
nix-install-alsa-ucm-conf
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/sh
### Package: nix-install-alsa-ucm-conf
### Version: v20240811.2300
### Author: Michael Gan "xmixahlx" [email protected]
### License: GPLv3
### Script Dependencies: (none)
## OVERRIDES
# NIXTOOLSDIR
if [ -z $NIXTOOLSDIR ]; then
NIXTOOLSDIR="`pwd`"
fi
echo "*** NIXTOOLSDIR selected is $NIXTOOLSDIR."
# INSTALLDEPS
if [ -z $INSTALLDEPS ]; then
INSTALLDEPS=debian
fi
echo "*** INSTALLDEPS selected is $INSTALLDEPS."
# GITBRANCH
# Upstream is "master". Releases are "v#.#.#" etc.
if [ -z $GITBRANCH ]; then
GITBRANCH=master
fi
echo "*** GITBRANCH selected is $GITBRANCH."
# DESTDIR
if [ -z $DESTDIR ]; then
DESTDIR=/usr
fi
echo "*** DESTDIR selected is $DESTDIR."
# LOCALSTATEDIR
if [ -z $LOCALSTATEDIR ]; then
LOCALSTATEDIR=/var
fi
echo "*** LOCALSTATEDIR selected is $LOCALSTATEDIR."
# SYSCONFDIR
if [ -z $SYSCONFDIR ]; then
SYSCONFDIR=/etc
fi
echo "*** SYSCONFDIR selected is $SYSCONFDIR."
## VARS
RESDIR=$NIXTOOLSDIR/resources
DEVDIR=$NIXTOOLSDIR/upstream
MULTILIBDIR=`gcc -dumpmachine`
GITURL=git://git.alsa-project.org
GITREPO=alsa-ucm-conf
GITTREE=alsa-ucm-conf
PKGDIR=$GITTREE\_$GITBRANCH
## DEPS
# Provide INSTALLDEPS=debian to install dependencies.
if [ $INSTALLDEPS = debian ]; then
# sudo apt-get -y build-dep blueman
sudo apt-get -y install build-essential coreutils libc-bin
fi
## PREP
set -e
mkdir -p $DEVDIR
cd $DEVDIR
## GIT
[ -d $PKGDIR ] || git clone --recursive --depth=1 $GITURL/$GITREPO.git --branch=$GITBRANCH $PKGDIR
cd $PKGDIR
git clean -dfx
git reset --hard
git pull
git submodule update --init --recursive --depth=1
## FOCUSRITE PATCH
patch -p1 < $RESDIR/alsa-ucm-conf/ucm-focusrite-patch-20240415.patch
## INSTALL
sudo cp -Rf ucm /usr/share/alsa/
sudo cp -Rf ucm2 /usr/share/alsa/
sudo ldconfig
## EXIT
exit
## ENJOY