summaryrefslogtreecommitdiffstats
path: root/audio/linux-f10-alsa-plugins-oss/pkg-install
blob: b77ca3d001c3cf775a755d843351c1ebffa91a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

case "$2" in
	POST-INSTALL)
		conf=${PKG_PREFIX}/etc/asound.conf
		if [ ! -f "$conf" ]; then
			exit 1
		fi
		awk '{print $0}; /files/ { print "\t\t\t\"/etc/alsa/pcm/pcm-oss.conf\""}' <$conf >/tmp/asound.conf.new
		mv /tmp/asound.conf.new $conf
		exit 0
		;;
	*)
		exit 0
		;;
esac

exit 0
OpenPOWER on IntegriCloud